Fix isTauri detection and updater bootup

This commit is contained in:
Pierre Jacquier
2024-02-15 08:29:11 -05:00
parent 1ffb6b0192
commit 3a28d097d4
3 changed files with 6 additions and 4 deletions

View File

@ -52,6 +52,10 @@
"plugins": { "plugins": {
"shell": { "shell": {
"open": true "open": true
},
"updater": {
"active": false,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEUzNzA4MjBEQjFBRTY4NzYKUldSMmFLNnhEWUp3NCtsT21Jd05wQktOaGVkOVp6MUFma0hNTDRDSnI2RkJJTEZOWG1ncFhqcU8K"
} }
}, },
"productName": "zoo-modeling-app", "productName": "zoo-modeling-app",

View File

@ -97,7 +97,7 @@ const ProjectSidebarMenu = ({
data-testid="createdAt" data-testid="createdAt"
> >
Created{' '} Created{' '}
{project.entrypointMetadata.atime?.toLocaleDateString()} {project.entrypointMetadata.birthtime?.toLocaleDateString()}
</p> </p>
)} )}
</div> </div>

View File

@ -1,8 +1,6 @@
export function isTauri(): boolean { export function isTauri(): boolean {
// TODO: fix it this broke in v2
return true
if (typeof window !== 'undefined') { if (typeof window !== 'undefined') {
return '__TAURI__' in window return '__TAURI_INTERNALS__' in window
} }
return false return false
} }