Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Feb 4, 2025
1 parent 6738637 commit 13661ad
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 10 deletions.
3 changes: 1 addition & 2 deletions frontend/src/components/FTUE/SetupProfile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ import { storeToRefs } from 'pinia';
import { useFTUEStore } from '@/stores/ftue-store';
import { useUserStore } from '@/stores/user-store';
import { useI18n } from 'vue-i18n';
import { dayjsKey, callKey, hasProfanityKey } from '@/keys';
import { dayjsKey, callKey } from '@/keys';
import TextInput from '@/tbpro/elements/TextInput.vue';
import SelectInput from '@/tbpro/elements/SelectInput.vue';
import PrimaryButton from '@/tbpro/elements/PrimaryButton.vue';
const { t } = useI18n();
const dj = inject(dayjsKey);
const call = inject(callKey);
const hasProfanity = inject(hasProfanityKey);
const ftueStore = useFTUEStore();
const { hasNextStep } = storeToRefs(ftueStore);
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/components/FTUE/SetupSchedule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { useUserStore } from '@/stores/user-store';
import { useCalendarStore } from '@/stores/calendar-store';
import { useScheduleStore } from '@/stores/schedule-store';
import {
dayjsKey, callKey, isoWeekdaysKey, hasProfanityKey,
dayjsKey, callKey, isoWeekdaysKey,
} from '@/keys';
import { Error, SelectOption } from '@/models';
import TextInput from '@/tbpro/elements/TextInput.vue';
Expand All @@ -23,7 +23,6 @@ const { t } = useI18n();
const dj = inject(dayjsKey);
const call = inject(callKey);
const isoWeekdays = inject(isoWeekdaysKey);
const hasProfanity = inject(hasProfanityKey);
const ftueStore = useFTUEStore();
const {
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/components/ScheduleCreation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Dayjs } from 'dayjs';
import { useI18n } from 'vue-i18n';
import { useUserStore } from '@/stores/user-store';
import {
dayjsKey, callKey, isoWeekdaysKey, hasProfanityKey,
dayjsKey, callKey, isoWeekdaysKey,
} from '@/keys';
import AppointmentCreatedModal from '@/components/AppointmentCreatedModal.vue';
Expand Down Expand Up @@ -48,7 +48,6 @@ const { t } = useI18n();
const dj = inject(dayjsKey);
const call = inject(callKey);
const isoWeekdays = inject(isoWeekdaysKey);
const hasProfanity = inject(hasProfanityKey);
const dateFormat = DateFormatStrings.QalendarFullDay;
const firstStep = ScheduleCreationState.Availability;
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/components/SettingsAccount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router';
import { useUserStore } from '@/stores/user-store';
import { callKey, hasProfanityKey } from '@/keys';
import { callKey } from '@/keys';
import {
StringListResponse, SubscriberResponse, BlobResponse, BooleanResponse,
} from '@/models';
Expand All @@ -30,7 +30,6 @@ import UserInviteTable from '@/components/UserInviteTable.vue';
// component constants
const { t } = useI18n({ useScope: 'global' });
const call = inject(callKey);
const hasProfanity = inject(hasProfanityKey);
const router = useRouter();
const schedule = useScheduleStore();
const externalConnectionsStore = useExternalConnectionsStore();
Expand Down
1 change: 0 additions & 1 deletion frontend/src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"credentialsIncomplete": "Bitte gib deine Zugangsdaten ein.",
"dataSourceIsEmpty": "{name} konnte nicht gefunden werden.",
"externalAccountHasNoCalendars": "Dein {external}-Konto enthält keine Kalender. Bitte verbinde ein anderes Konto.",
"fieldContainsProfanity": "Bitte verwende keine beleidigenden Ausdrücke (entdeckt in {field}).",
"fieldIsRequired": "{field} darf nicht leer sein.",
"generalBookingError": "Beim Abrufen des Zeitplans ist ein Problem aufgetreten. Bitte später nochmal versuchen.",
"googleRefreshError": "Es gab ein Problem mit Google, bitte erneut verbinden.",
Expand Down
1 change: 0 additions & 1 deletion frontend/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"credentialsIncomplete": "Please provide login credentials.",
"dataSourceIsEmpty": "No {name} could be found.",
"externalAccountHasNoCalendars": "Your {external} account contains no calendars. Please connect a different account.",
"fieldContainsProfanity": "Please don't use offensive language (detected in {field}).",
"fieldIsRequired": "{field} cannot be empty.",
"generalBookingError": "Sorry, there was a problem retrieving the schedule details. Please try again later.",
"googleRefreshError": "Error connecting with Google API, please re-connect.",
Expand Down

0 comments on commit 13661ad

Please sign in to comment.