fix(lint): fix import ordering broken by @stirling-image → @ashim rename

The package scope rename changed the alphabetical position of imports
(@ashim sorts before @dnd-kit; @stirling-image sorted after), causing
biome's organizeImports rule to flag them as unsorted.

- apps/api/src/index.ts: sort registerRestorePhoto import correctly
- apps/web/src/components/tools/pipeline-builder.tsx: sort @ashim/shared import
- apps/web/src/pages/privacy-policy-page.tsx: auto-format
This commit is contained in:
Siddharth Kumar Sah
2026-04-14 22:01:04 +08:00
parent 85b1cfc10a
commit 3982ff4136
3 changed files with 20 additions and 20 deletions
@@ -1,3 +1,4 @@
import { TOOLS } from "@ashim/shared";
import {
closestCenter,
DndContext,
@@ -14,7 +15,6 @@ import {
verticalListSortingStrategy,
} from "@dnd-kit/sortable";
import { CSS } from "@dnd-kit/utilities";
import { TOOLS } from "@ashim/shared";
import * as icons from "lucide-react";
import { GripVertical, Plus, X } from "lucide-react";
import { useEffect, useMemo, useState } from "react";