Skip to content

Commit

Permalink
imports should go before props
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantgillespie committed Dec 31, 2024
1 parent bb52673 commit b2f4bb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Block/WallOfLove/Testimonial.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
const props = defineProps<{ testimonialData: Testimonial }>();
import placeholderAvatar from '~/assets/svg/placeholder-avatar.svg';
import starIcon from '~/assets/svg/star.svg';
import type { Testimonial } from '~/types/schema/content';
import type { Testimonial } from '~/types/schema';
const props = defineProps<{ testimonialData: Testimonial }>();
const {
public: { directusUrl },
Expand Down

0 comments on commit b2f4bb5

Please sign in to comment.