chore: bump version (#1275)

This commit is contained in:
Himself65
2023-03-02 14:52:41 -06:00
committed by GitHub
parent 67c0d84d97
commit 0507300a29
11 changed files with 1464 additions and 1707 deletions

View File

@@ -16,17 +16,17 @@
"@affine/i18n": "workspace:*",
"@blocksuite/blocks": "0.5.0-20230302142916-8e090d3",
"@blocksuite/editor": "0.5.0-20230302142916-8e090d3",
"@blocksuite/icons": "^2.0.17",
"@blocksuite/icons": "2.0.17",
"@blocksuite/react": "0.5.0-20230302142916-8e090d3",
"@blocksuite/store": "0.5.0-20230302142916-8e090d3",
"@emotion/cache": "^11.10.5",
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6",
"@mui/material": "^5.11.10",
"@mui/material": "^5.11.11",
"cmdk": "^0.1.22",
"css-spring": "^4.1.0",
"dayjs": "^1.11.7",
"jotai": "^2.0.2",
"jotai": "^2.0.3",
"jotai-devtools": "^0.2.0",
"lit": "^2.6.1",
"react": "^18.2.0",
@@ -35,7 +35,7 @@
"swr": "^2.0.4",
"y-indexeddb": "^9.0.9",
"y-protocols": "^1.0.5",
"yjs": "^13.5.47",
"yjs": "^13.5.48",
"zod": "^3.20.6"
},
"devDependencies": {
@@ -47,7 +47,7 @@
"@types/react-dom": "^18.0.11",
"@types/webpack-env": "^1.18.0",
"dotenv": "^16.0.3",
"eslint-config-next": "^13.2.2",
"eslint-config-next": "^13.2.3",
"next": "^13.2.2",
"next-debug-local": "^0.1.5",
"next-router-mock": "^0.9.2",

View File

@@ -6,6 +6,10 @@ const minimumChromeVersion = 102;
export const shouldShowWarning = () => {
const env = getEnvironment();
if (env.isDesktop) {
// even though desktop have compatibility issues, we don't want to show the warning
return false;
}
if (!env.isBrowser) {
// disable in SSR
return false;