Skip to content

Commit

Permalink
Revert "fix dashboard imports"
Browse files Browse the repository at this point in the history
This reverts commit c868a32.
  • Loading branch information
BillySBarrett committed Aug 21, 2024
1 parent c868a32 commit 4df2f19
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type InterestGroupWrite, InterestGroupWriteSchema } from "@dotkomonline/types"
import { createCheckboxInput, createTextInput, createTextareaInput, useFormBuilder } from "../../../app/form"
import { createCheckboxInput, createTextInput, createTextareaInput, useFormBuilder } from "src/app/form"

const INTEREST_GROUP_FORM_DEFAULT_VALUES: Partial<InterestGroupWrite> = {}

Expand Down
4 changes: 2 additions & 2 deletions apps/dashboard/src/app/(dashboard)/job-listing/write-form.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { JobListingSchema, JobListingWriteSchema } from "@dotkomonline/types"
import type { z } from "zod"
import {
createCheckboxInput,
createDateTimeInput,
Expand All @@ -8,7 +7,8 @@ import {
createTextInput,
createTextareaInput,
useFormBuilder,
} from "../../../app/form"
} from "src/app/form"
import type { z } from "zod"
import { useCompanyAllQuery } from "../../../modules/company/queries/use-company-all-query"
import { useJobListingAllLocationsQuery } from "../../../modules/job-listing/queries/use-job-listing-locations-all-query"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { AttendanceId } from "@dotkomonline/types"
import { useQueryNotification } from "../../../app/notifications"
import { useQueryNotification } from "src/app/notifications"
import { trpc } from "../../../utils/trpc"
import { openAttendanceRegisteredModal } from "../modals/attendance-registered-modal"
import { openAlreadyAttendedModal } from "../modals/error-attendance-registered-modal"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useQueryNotification } from "../../../app/notifications"
import { trpc } from "../../../utils/trpc"
import { useQueryNotification } from "src/app/notifications"
import { trpc } from "src/utils/trpc"

export const useUpdateInterestGroupMutation = () => {
const notification = useQueryNotification()
Expand Down

0 comments on commit 4df2f19

Please sign in to comment.