Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem committed Apr 2, 2024
1 parent 02222a6 commit 905ca56
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 19 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run code formatting check
Expand All @@ -27,11 +27,11 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
cache: "npm"
- name: Install dependencies
run: |
npm ci
npx bos-workspace install
npm install bos-workspace
npx playwright install-deps
npx playwright install
- name: Run tests
Expand Down
17 changes: 8 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": true
},
"prettier.semi": false,
"prettier.singleQuote": true
}

"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": true
},
"prettier.semi": false,
"prettier.singleQuote": true
}
8 changes: 1 addition & 7 deletions apps/potlock/widget/Components/InfoSegment.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@ const title = props.title;
const description = props.description;

const icon = (
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.0001 13.3327V9.99935M10.0001 6.66602H10.0084M18.3334 9.99935C18.3334 14.6017 14.6025 18.3327 10.0001 18.3327C5.39771 18.3327 1.66675 14.6017 1.66675 9.99935C1.66675 5.39698 5.39771 1.66602 10.0001 1.66602C14.6025 1.66602 18.3334 5.39698 18.3334 9.99935Z"
stroke="#475467"
Expand Down

0 comments on commit 905ca56

Please sign in to comment.