refactor: unify types

This commit is contained in:
kakkokari-gtyih
2024-12-03 10:30:41 +09:00
committed by Samuel Newman
parent 1361d4242d
commit b7369a95c7
+1 -1
View File
@@ -36,7 +36,7 @@ render(<LandingPage />, root)
function LandingPage() {
const [uri, setUri] = useState('')
const [colorMode, setColorMode] = useState<'auto' | 'light' | 'dark'>('auto')
const [colorMode, setColorMode] = useState<ColorModeValues>('auto')
const [error, setError] = useState<string | null>(null)
const [loading, setLoading] = useState(false)
const [thread, setThread] = useState<AppBskyFeedDefs.ThreadViewPost | null>(