From a8660a974c9fb46c8ef47d93e803f8b5a5f6ac20 Mon Sep 17 00:00:00 2001 From: Max Wofford Date: Tue, 7 Jan 2025 13:45:09 -0500 Subject: [PATCH] Fix missing imports for ship-utils --- src/app/harbor/shipyard/ship-utils.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/harbor/shipyard/ship-utils.ts b/src/app/harbor/shipyard/ship-utils.ts index 524c1f8d..b057bbd5 100644 --- a/src/app/harbor/shipyard/ship-utils.ts +++ b/src/app/harbor/shipyard/ship-utils.ts @@ -2,13 +2,14 @@ import { getSelfPerson } from '@/app/utils/server/airtable' import { getSession } from '@/app/utils/auth' -import { fetchShips, person } from '@/app/utils/server/data' +import { person } from '@/app/utils/server/data' import { getWakaSessions } from '@/app/utils/waka' import { cookies } from 'next/headers' -import type { Ship } from '@/app/utils/server/data' import Airtable from 'airtable' import { withLock } from '../../../../lib/redis-lock' import sum from '../../../../lib/sum' +import { fetchShips } from '@/app/utils/data' +import type { Ship } from '@/app/utils/data' const peopleTableName = 'people' const shipsTableName = 'ships'