Fix isTauri detection and updater bootup
This commit is contained in:
@ -52,6 +52,10 @@
|
||||
"plugins": {
|
||||
"shell": {
|
||||
"open": true
|
||||
},
|
||||
"updater": {
|
||||
"active": false,
|
||||
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEUzNzA4MjBEQjFBRTY4NzYKUldSMmFLNnhEWUp3NCtsT21Jd05wQktOaGVkOVp6MUFma0hNTDRDSnI2RkJJTEZOWG1ncFhqcU8K"
|
||||
}
|
||||
},
|
||||
"productName": "zoo-modeling-app",
|
||||
|
@ -97,7 +97,7 @@ const ProjectSidebarMenu = ({
|
||||
data-testid="createdAt"
|
||||
>
|
||||
Created{' '}
|
||||
{project.entrypointMetadata.atime?.toLocaleDateString()}
|
||||
{project.entrypointMetadata.birthtime?.toLocaleDateString()}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user