Skip to content

Commit

Permalink
refactor: correct component name
Browse files Browse the repository at this point in the history
  • Loading branch information
Me-Phew committed Mar 23, 2024
1 parent 08cd332 commit 0b4016c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Home/AvailableSlotsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
v-for="slot in availableSlots"
:key="slot.id"
>
<AvailableDateTile
<AvailableSlotTile
:day="slot.day"
:time="slot.time"
/>
Expand All @@ -26,7 +26,7 @@
</template>

<script>
import AvailableDateTile from "@/components/Home/AvailableSlotTile.vue";
import AvailableSlotTile from "@/components/Home/AvailableSlotTile.vue";
import CustomLoader from "@/components/CustomLoader.vue";
import { computed, ref, watch } from "vue";
import { useStore } from "vuex";
Expand All @@ -37,7 +37,7 @@ import { useMessage } from "naive-ui";
export default {
name: "availableSlotsList",
components: {
AvailableDateTile,
AvailableSlotTile,
CustomLoader,
},
props: {
Expand Down

0 comments on commit 0b4016c

Please sign in to comment.