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": {
"shell": {
"open": true
},
"updater": {
"active": false,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEUzNzA4MjBEQjFBRTY4NzYKUldSMmFLNnhEWUp3NCtsT21Jd05wQktOaGVkOVp6MUFma0hNTDRDSnI2RkJJTEZOWG1ncFhqcU8K"
}
},
"productName": "zoo-modeling-app",

View File

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

View File

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