Skip to content

Commit

Permalink
it makes the linter happy or it gets error rows again
Browse files Browse the repository at this point in the history
  • Loading branch information
WillCorrigan committed Nov 27, 2024
1 parent fb597ba commit 5067a70
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions packages/frontpage/app/(app)/post/new/_action.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
"use server";

import { createPost } from "@/lib/api/post";
import { DID } from "@/lib/data/atproto/did";
import { getVerifiedHandle } from "@/lib/data/atproto/identity";
import { uncached_doesPostExist } from "@/lib/data/db/post";
import { DataLayerError } from "@/lib/data/error";
import { ensureUser } from "@/lib/data/user";
import { redirect } from "next/navigation";
Expand Down
2 changes: 1 addition & 1 deletion packages/frontpage/lib/api/comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as atproto from "../data/atproto/comment";
import { DataLayerError } from "../data/error";
import { ensureUser } from "../data/user";
import * as db from "../data/db/comment";
import { DID, getPdsUrl } from "../data/atproto/did";
import { DID } from "../data/atproto/did";
import { createNotification } from "../data/db/notification";

export type ApiCreateCommentInput = atproto.CommentInput & {
Expand Down

0 comments on commit 5067a70

Please sign in to comment.