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' import {ReportOption} from './utils/useReportOptions'
export type ReportState = { export type ReportState = {
userInteracted: boolean
selectedOption?: ReportOption selectedOption?: ReportOption
selectedLabeler?: AppBskyLabelerDefs.LabelerViewDetailed selectedLabeler?: AppBskyLabelerDefs.LabelerViewDetailed
details?: string details?: string
@@ -43,7 +42,6 @@ export type ReportAction =
} }
export const initialState: ReportState = { export const initialState: ReportState = {
userInteracted: false,
selectedOption: undefined, selectedOption: undefined,
selectedLabeler: undefined, selectedLabeler: undefined,
details: undefined, details: undefined,