diff options
| author | Yash <[email protected]> | 2024-04-11 04:52:44 +0000 |
|---|---|---|
| committer | Yash <[email protected]> | 2024-04-11 04:52:44 +0000 |
| commit | 6dcc7d18c9be5e3a5e0a3ff60668424ee0158b4e (patch) | |
| tree | 179aa936536510cc707368fc7c330c4c7fbdc3f8 /apps/extension/src/util.ts | |
| parent | novel editor (diff) | |
| parent | save user ID with url to ensure that same website can be saved by users (diff) | |
| download | supermemory-new-ui.tar.xz supermemory-new-ui.zip | |
Merge branch 'main' of https://github.com/Dhravya/supermemory into new-uinew-ui
Diffstat (limited to 'apps/extension/src/util.ts')
| -rw-r--r-- | apps/extension/src/util.ts | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/apps/extension/src/util.ts b/apps/extension/src/util.ts index b1085edd..d2ea35d3 100644 --- a/apps/extension/src/util.ts +++ b/apps/extension/src/util.ts @@ -1,13 +1,13 @@ export const getEnv = () => { - // chrome.management.getSelf((self) => { - // if (self.installType === 'development') { - // return "development" - // } - // else { - // return "production" - // } - // }) + // chrome.management.getSelf((self) => { + // if (self.installType === 'development') { + // return "development" + // } + // else { + // return "production" + // } + // }) - // return null - return 'development' -}
\ No newline at end of file + // return null + return "production"; +}; |