Skip to content

Commit ce80e62

Browse files
committed
fix: select docs
1 parent 600f56e commit ce80e62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes/docs/forms/select.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ Get started with the default toggle component example as a checkbox element to r
285285
<script lang="ts">
286286
import { MultiSelect } from "flowbite-svelte";
287287
288-
let multiSelected: string = [];
288+
let multiSelected: string[] = [];
289289
let countries = [
290290
{ value: "us", name: "United States" },
291291
{ value: "ca", name: "Canada" },
@@ -301,7 +301,7 @@ Get started with the default toggle component example as a checkbox element to r
301301
### Placeholder
302302

303303
```svelte example class="h-96"
304-
<script>
304+
<script lang="ts">
305305
import { MultiSelect } from "flowbite-svelte";
306306
307307
let placeholder = "placeholder text";

0 commit comments

Comments
 (0)