refactor: fix stale imports

This commit is contained in:
syntaxbullet
2026-01-08 16:39:34 +01:00
parent f92415b89c
commit 017f5ad818
20 changed files with 29 additions and 32 deletions

View File

@@ -39,7 +39,7 @@ mock.module("@shared/db/DrizzleClient", () => {
};
});
mock.module("@/lib/config", () => ({
mock.module("@shared/lib/config", () => ({
config: {
leveling: {
base: 100,

View File

@@ -1,7 +1,7 @@
import { users, userTimers } from "@db/schema";
import { eq, sql, and } from "drizzle-orm";
import { withTransaction } from "@/lib/db";
import { config } from "@/lib/config";
import { config } from "@shared/lib/config";
import type { Transaction } from "@shared/lib/types";
import { TimerType } from "@shared/lib/constants";