chore: show version on error page

This commit is contained in:
Adam 2025-12-24 20:25:36 -06:00
commit 76ac1ccb6b
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
6 changed files with 27 additions and 12 deletions

View file

@ -5,6 +5,9 @@ export type Platform = {
/** Platform discriminator */
platform: "web" | "tauri"
/** App version */
version?: string
/** Open a URL in the default browser */
openLink(url: string): void