Skip to content

Commit

Permalink
temporarily fix TS2589 error
Browse files Browse the repository at this point in the history
  • Loading branch information
TuritoYuenan committed Aug 22, 2024
1 parent ad34d8a commit 5753f21
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/views/DonationCenters.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<script setup lang="ts">
import { onMounted, ref } from 'vue';
import { DonationCenterSchema } from '../models/database';
import Supabase from '../utils/supabase';
import DonationCenter from '../components/DonationCenter.vue'
const centers = ref<DonationCenterSchema[]>([]);
const centers = ref();
onMounted(async () => {
const { data } = await Supabase().from('donation_centers').select('*').limit(10);
Expand Down

0 comments on commit 5753f21

Please sign in to comment.