Skip to content

Commit

Permalink
🔨 Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed Jun 26, 2024
1 parent 820c4d6 commit e2e762d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/stores/booking-modal-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { modalStates } from '@/definitions';
export const useBookingModalStore = defineStore('bookingModal', () => {
const open = ref(false);
const state = ref(modalStates.open);
const stateData = ref < string > (null);
const stateData = ref<string>(null);

const isLoading = computed(() => state.value === modalStates.loading);
const isFinished = computed(() => state.value === modalStates.finished);
Expand Down

0 comments on commit e2e762d

Please sign in to comment.