run yarn lint --fix (#9013)

This commit is contained in:
Samuel Newman
2025-09-09 18:38:21 +03:00
committed by GitHub
parent bb30b592d7
commit 53e43a957c
225 changed files with 555 additions and 433 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import {ThemeName} from '#/alf/types'
import {type ThemeName} from '#/alf/types'
export function select<T>(name: ThemeName, options: Record<ThemeName, T>) {
switch (name) {
+2 -2
View File
@@ -1,10 +1,10 @@
import React from 'react'
import {ColorSchemeName, useColorScheme} from 'react-native'
import {type ColorSchemeName, useColorScheme} from 'react-native'
import {isWeb} from '#/platform/detection'
import {useThemePrefs} from '#/state/shell'
import {dark, dim, light} from '#/alf/themes'
import {ThemeName} from '#/alf/types'
import {type ThemeName} from '#/alf/types'
export function useColorModeTheme(): ThemeName {
const theme = useThemeName()
+1 -1
View File
@@ -1,6 +1,6 @@
import React from 'react'
import {Breakpoint, useBreakpoints} from '#/alf/breakpoints'
import {type Breakpoint, useBreakpoints} from '#/alf/breakpoints'
import * as tokens from '#/alf/tokens'
type Gutter = 'compact' | 'base' | 'wide' | 0