Skip to content

Commit 298f809

Browse files
committed
feat: update .gitignore to include .env files and modify Tauri identifier; add license key to AnnotationLayer component
1 parent ff0719d commit 298f809

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ node_modules
1111
dist
1212
dist-ssr
1313
*.local
14+
.env
15+
.env.*
1416
src-tauri/resources/
1517

1618

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "RelWave",
44
"version": "0.3.0-beta.1",
5-
"identifier": "com.yashs.RelWave",
5+
"identifier": "tech.relwave.app",
66
"build": {
77
"beforeDevCommand": "npm run dev",
88
"devUrl": "http://localhost:1420",

src/components/er-diagram/AnnotationLayer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ export default function AnnotationLayer({ projectId, active }: AnnotationLayerPr
101101
}
102102
`}</style>
103103
<Tldraw
104+
licenseKey={import.meta.env.VITE_TLDRAW_LICENSE_KEY}
104105
onMount={handleMount}
105106
hideUi={!active}
106107
options={{ maxPages: 1 }}

0 commit comments

Comments
 (0)