Skip to content

Commit

Permalink
Revert "[DO NOT MERGE] Add deployment status checks (#333)"
Browse files Browse the repository at this point in the history
This reverts commit b314905.
  • Loading branch information
nicoecheza authored Jan 16, 2025
1 parent b314905 commit 56aac64
Show file tree
Hide file tree
Showing 19 changed files with 140 additions and 886 deletions.
4 changes: 3 additions & 1 deletion packages/main/src/modules/handle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export async function handle<T extends keyof Ipc>(
ipcMain.handle(channel, async (event, ...args) => {
try {
log.info(
`[IPC] channel=${channel} ${args.map((arg, idx) => `args[${idx}]=${JSON.stringify(arg)}`).join(' ')}`.trim(),
`[IPC] channel=${channel} ${args
.map((arg, idx) => `args[${idx}]=${JSON.stringify(arg)}`)
.join(' ')}`.trim(),
);
const value = await handler(event, ...(args as Parameters<Ipc[T]>));
const result: IpcResult<typeof value> = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const AuthProvider: React.FC<{ children: ReactNode }> = ({ children }) =>
const [wallet, setWallet] = useState<string>();
const [avatar, setAvatar] = useState<Avatar>();
const [isSignedIn, setIsSignedIn] = useState(false);
const [chainId, setChainId] = useState<ChainId>(ChainId.ETHEREUM_SEPOLIA);
const [chainId, setChainId] = useState<ChainId>(ChainId.ETHEREUM_MAINNET);

const isSigningIn = !!initSignInResultRef?.current;

Expand Down
8 changes: 8 additions & 0 deletions packages/renderer/src/components/Button/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,13 @@
}

.Button.MuiButton-outlined {
color: var(--dcl) !important;
background-color: transparent;
border-color: var(--dcl);
}

.Button.MuiButton-outlined:hover {
color: var(--dcl) !important;
background-color: transparent;
border-color: var(--dcl-dark);
}
4 changes: 3 additions & 1 deletion packages/renderer/src/components/EditorPage/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ export function EditorPage() {
if (import.meta.env.VITE_ASSET_PACKS_JS_PORT && import.meta.env.VITE_ASSET_PACKS_JS_PATH) {
// this is for local development of the asset-packs repo
const b64 = btoa(import.meta.env.VITE_ASSET_PACKS_JS_PATH);
binIndexJsUrl = `http://localhost:${import.meta.env.VITE_ASSET_PACKS_JS_PORT}/content/contents/b64-${b64}`;
binIndexJsUrl = `http://localhost:${
import.meta.env.VITE_ASSET_PACKS_JS_PORT
}/content/contents/b64-${b64}`;
}

// this is the asset-packs javascript file
Expand Down
Loading

0 comments on commit 56aac64

Please sign in to comment.