mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-22 22:35:45 +00:00
fix(resolve): fix resolve mismatch conflict path on merge
This commit is contained in:
@@ -15,7 +15,7 @@ import Table from '@/components/Table';
|
||||
import RowDropdownOptions from '@/components/table/RowDropdownOptions';
|
||||
import RowCollapseOptions from '@/components/table/RowCollapseOptions';
|
||||
import { type CellContext } from '@tanstack/react-table';
|
||||
import { type Recording } from '@/types/api/flock/recording';
|
||||
import { type Recording } from '@/types/api/production/recording';
|
||||
|
||||
const dummyRecordings: Recording[] = [
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import * as Yup from 'yup';
|
||||
import { RECORDING_FLAG_OPTIONS } from '@/config/constant';
|
||||
import { Recording } from '@/types/api/flock/recording';
|
||||
import { Recording } from '@/types/api/production/recording';
|
||||
|
||||
export const RecordingFormSchema = Yup.object({
|
||||
flock: Yup.object({
|
||||
|
||||
@@ -11,7 +11,10 @@ import SelectInput, { OptionType } from '@/components/input/SelectInput';
|
||||
import ConfirmationModal from '@/components/modal/ConfirmationModal';
|
||||
import { FormHeader } from '@/components/helper/form/FormHeader';
|
||||
import { FormActions } from '@/components/helper/form/FormActions';
|
||||
import { CreateRecordingPayload, Recording } from '@/types/api/flock/recording';
|
||||
import {
|
||||
CreateRecordingPayload,
|
||||
Recording,
|
||||
} from '@/types/api/production/recording';
|
||||
import {
|
||||
RecordingFormSchema,
|
||||
RecordingFormValues,
|
||||
|
||||
@@ -2,11 +2,11 @@ import { useCallback, useState } from 'react';
|
||||
import { useRouter } from 'next/navigation';
|
||||
import { toast } from 'react-hot-toast';
|
||||
import { useModal } from '@/components/Modal';
|
||||
import { RecordingApi } from '@/services/api/flock';
|
||||
import { RecordingApi } from '@/services/api/production';
|
||||
import {
|
||||
CreateRecordingPayload,
|
||||
UpdateRecordingPayload,
|
||||
} from '@/types/api/flock/recording';
|
||||
} from '@/types/api/production/recording';
|
||||
import { isResponseError } from '@/lib/api-helper';
|
||||
|
||||
export const useRecordingFormHandlers = (initialValuesId?: number) => {
|
||||
|
||||
Reference in New Issue
Block a user