Skip to content

Commit bfc6494

Browse files
committed
fixes
1 parent 6211d79 commit bfc6494

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/components/billing/states.js renamed to src/lib/components/billing/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const states = [
1+
export const states: Array<{ name: string; abbreviation: string }> = [
22
{
33
"name": "Alabama",
44
"abbreviation": "AL"

src/lib/components/billing/statePicker.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts">
2-
import { states } from './states.js';
2+
import { states } from './state.ts';
33
import { InputSelect } from '$lib/elements/forms';
44
import type { PaymentMethod } from '@stripe/stripe-js';
55
import { Alert, Card, Layout, Typography } from '@appwrite.io/pink-svelte';

0 commit comments

Comments
 (0)