Skip to content

Commit

Permalink
added unlock profile and shifted create group
Browse files Browse the repository at this point in the history
  • Loading branch information
mishramonalisha76 committed Mar 19, 2024
1 parent 28a8538 commit 45d2acb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,19 +101,19 @@ const extendConsole = () => {
// extend console
extendConsole();

// // Disable console but not on localhost
// if (location.hostname !== "localhost" && location.hostname !== "127.0.0.1") {
// if (appConfig?.appEnv === "prod") {
// console.enable("debug", false);
// console.enable("log", false);
// console.enable("info", false);

// // disable console.warn in prod
// if (appConfig?.appEnv === "prod") {
// console.enable("warn", false);
// }
// }
// }
// Disable console but not on localhost
if (location.hostname !== 'localhost' && location.hostname !== '127.0.0.1') {
if (appConfig?.appEnv === 'prod') {
console.enable('debug', false);
console.enable('log', false);
console.enable('info', false);

// disable console.warn in prod
if (appConfig?.appEnv === 'prod') {
console.enable('warn', false);
}
}
}

// Provess App
export default function App() {
Expand Down
2 changes: 2 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@ button, a, a:before, a:after {
--w3o-border-radius: 24px !important;
--w3o-font-family: unset !important;
--onboard-modal-backdrop: transparent !important;
--onboard-modal-z-index:999999 !important;
--modal-backdrop: transparent !important;

/* Wallet connect modal z-index */
Expand All @@ -583,6 +584,7 @@ button, a, a:before, a:after {
--w3o-border-radius: 24px !important;
--w3o-font-family: unset !important;
--onboard-modal-backdrop: transparent !important;
--onboard-modal-z-index:999999 !important;
--modal-backdrop: transparent !important;
}

Expand Down

0 comments on commit 45d2acb

Please sign in to comment.