Remove vestigial state

This commit is contained in:
Eric Bailey
2025-02-28 18:17:33 -06:00
parent b1dc671a85
commit d76a067750
@@ -3,7 +3,6 @@ import {AppBskyLabelerDefs, ComAtprotoModerationDefs} from '@atproto/api'
import {ReportOption} from './utils/useReportOptions'
export type ReportState = {
userInteracted: boolean
selectedOption?: ReportOption
selectedLabeler?: AppBskyLabelerDefs.LabelerViewDetailed
details?: string
@@ -43,7 +42,6 @@ export type ReportAction =
}
export const initialState: ReportState = {
userInteracted: false,
selectedOption: undefined,
selectedLabeler: undefined,
details: undefined,