seperate project types, make tag dropdown location configurable, update api client

This commit is contained in:
Gregor Vostrak
2024-08-05 15:02:51 +02:00
parent 04bb8e50a7
commit 10cc5cf42a
9 changed files with 37 additions and 58 deletions

View File

@@ -10,8 +10,6 @@ import type {
import { getCurrentOrganizationId } from '@/utils/useUser';
import { useNotificationsStore } from '@/utils/notification';
export type BillableKey = 'non-billable' | 'default-rate' | 'custom-rate';
export const useProjectsStore = defineStore('projects', () => {
const projectResponse = ref<ProjectResponse | null>(null);
const { handleApiRequestNotifications } = useNotificationsStore();