Skip to content

Commit f8c5e74

Browse files
committed
Make linter happy
1 parent ba7fc42 commit f8c5e74

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/archive/src/server.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import cron from "./plugins/cron";
99
const fastify = Fastify({
1010
logger: process.env.SOURCE_TOKEN
1111
? pino(
12+
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
1213
pino.transport<{ sourceToken: string }>({
1314
target: "@logtail/pino",
1415
options: { sourceToken: process.env.SOURCE_TOKEN },

packages/viewer/src/components/replies/InfiniteScrollReplies.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,10 @@ export default function InfiniteScrollReplies({
5757
style={{ overflow: "inherit" }}
5858
scrollThreshold="1024px"
5959
>
60-
{data?.map(
61-
(dat) =>
62-
dat.replies?.map((reply) => (
63-
<Reply post={discussion} reply={reply} key={reply.id} />
64-
)),
60+
{data?.map((dat) =>
61+
dat.replies?.map((reply) => (
62+
<Reply post={discussion} reply={reply} key={reply.id} />
63+
)),
6564
)}
6665
</InfiniteScroll>
6766

0 commit comments

Comments
 (0)