Refactor imports (#470)
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import {
|
||||
generateMeetingId,
|
||||
generateMeetingLink,
|
||||
addVideoConferenceToDescription,
|
||||
extractVideoConferenceFromDescription,
|
||||
generateMeetingId,
|
||||
generateMeetingLink,
|
||||
} from "../videoConferenceUtils";
|
||||
|
||||
// Mock window object for Node.js environment
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Auth } from "@/features/User/oidcAuth";
|
||||
import ky from "ky";
|
||||
import { Auth } from "../features/User/oidcAuth";
|
||||
|
||||
const RETRY_CONFIG = {
|
||||
maxRetries: 10,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { RepetitionObject } from "../features/Events/EventsTypes";
|
||||
import { userAttendee } from "../features/User/models/attendee";
|
||||
import { RepetitionObject } from "@/features/Events/EventsTypes";
|
||||
import { userAttendee } from "@/features/User/models/attendee";
|
||||
|
||||
export interface EventFormTempData {
|
||||
// Form fields
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { RootState } from "../app/store";
|
||||
import { Calendar } from "../features/Calendars/CalendarTypes";
|
||||
import { RootState } from "@/app/store";
|
||||
import { Calendar } from "@/features/Calendars/CalendarTypes";
|
||||
|
||||
export function findCalendarById(
|
||||
state: Partial<RootState>,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { userData } from "../features/User/userDataTypes";
|
||||
import { userData } from "@/features/User/userDataTypes";
|
||||
|
||||
/**
|
||||
* Get user display name for UI display
|
||||
|
||||
Reference in New Issue
Block a user