Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Frontend] Fixes a bug with the QR code modal being able to be toggled via the connect wallet button #41

Open
wants to merge 21 commits into
base: add_icons
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@master
with:
node-version: 18
node-version: 20
- name: install dependencies
run: npm install
run: yarn
- name: build
run: npm run make
run: yarn make

build_on_mac:
runs-on: macos-latest
Expand All @@ -23,20 +23,20 @@ jobs:
python-version: '3.10'
- uses: actions/setup-node@master
with:
node-version: 18
node-version: 20
- name: install dependencies
run: npm install
run: yarn
- name: build
run: npm run make
run: yarn make

build_on_win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@master
with:
node-version: 18
node-version: 20
- name: install dependencies
run: npm install
run: yarn
- name: build
run: npm run make
run: yarn make
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"webpack-permissions-plugin": "^1.0.9"
},
"dependencies": {
"@langchain/community": "^0.0.32",
"@metamask/sdk": "^0.14.2",
"@metamask/sdk-react": "^0.14.2",
"@metamask/sdk-react-ui": "^0.14.3",
Expand All @@ -87,6 +88,8 @@
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.1.0",
"ethers": "^6.11.1",
"langchain": "^0.1.22",
"llamaindex": "^0.1.17",
"ollama": "^0.4.3",
"qrcode": "^1.5.3",
"react-loader-spinner": "^6.1.6",
Expand Down
Empty file.
Empty file.
Loading