File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
viewer/src/components/replies Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import cron from "./plugins/cron";
99const 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 } ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments