From fcc5ced9fca93d76c95a348fd1a930bc6a5fc360 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 10 Jun 2025 21:09:49 +0300 Subject: [PATCH] eslint ignore --- src/state/queries/usePostThread/traversal.ts | 1 + src/state/queries/usePostThread/types.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/state/queries/usePostThread/traversal.ts b/src/state/queries/usePostThread/traversal.ts index 8679e35456..53996046f5 100644 --- a/src/state/queries/usePostThread/traversal.ts +++ b/src/state/queries/usePostThread/traversal.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-labels */ import {AppBskyUnspeccedDefs, type ModerationOpts} from '@atproto/api' import { diff --git a/src/state/queries/usePostThread/types.ts b/src/state/queries/usePostThread/types.ts index fee9216ca0..ec968a1a33 100644 --- a/src/state/queries/usePostThread/types.ts +++ b/src/state/queries/usePostThread/types.ts @@ -198,7 +198,7 @@ export type TraversalMetadata = { * "seen" on first load. Use `repliesIndexCount` for the total number of * replies that were hydrated in the response. * - * After traverssal, we can use this to calculate if we actually got all the + * After traversal, we can use this to calculate if we actually got all the * replies we expected, or if some were blocked, etc. */ repliesSeenCount: number