Skip to content

Commit

Permalink
(#26) Lock svelte version until transition bug is fixed; bug was intr…
Browse files Browse the repository at this point in the history
…uduced in v82 (see sveltejs/svelte#10876)
  • Loading branch information
Auroratide committed Mar 28, 2024
1 parent 270483d commit dee7279
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 34 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"jsdom": "^24.0.0",
"pg": "^8.11.3",
"supabase": "^1.150.0",
"svelte": "5.0.0-next.82",
"svelte": "5.0.0-next.81",
"svelte-check": "^3.6.8",
"tslib": "^2.6.2",
"tsx": "^4.7.1",
Expand Down
62 changes: 31 additions & 31 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/lib/prompt/WordInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
}; let {
id,
label,
value = $bindable(""),
// value = $bindable(""), // will be needed in next.82+
value = "",
disabled = false,
}: Props = $props()
Expand Down
3 changes: 2 additions & 1 deletion src/lib/votes/WordVoter.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
}; let {
id,
words,
value = $bindable(),
// value = $bindable(), // will be needed in next.82+
value,
specificWord,
myWord,
onreplaceword,
Expand Down

0 comments on commit dee7279

Please sign in to comment.