Skip to content

Commit

Permalink
fixes gateway url (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem authored May 1, 2024
1 parent fef1dd5 commit c1937e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gateway/src/useAuth.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { flags } from "../config/flags.js";

export const refreshAllowanceObj = {};
const NetworkId = flags.network;
const RPC_URL = flags.bosLoaderUrl + "api/proxy-rpc";
const RPC_URL = "http://127.0.0.1:8080/" + "api/proxy-rpc";

export function useAuth() {
const [connected, setConnected] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bos-workspace",
"version": "1.0.0-alpha.14",
"version": "1.0.0-alpha.15",
"description": "",
"bin": {
"bos-workspace": "./bin/bw.js",
Expand Down

0 comments on commit c1937e2

Please sign in to comment.