Skip to content

Commit

Permalink
Update imports in app.ts and Site.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
plahteenlahti committed May 4, 2024
1 parent 0a02d10 commit a246a9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/store/reducers/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createSlice, PayloadAction, createAsyncThunk } from '@reduxjs/toolkit'
import { PayloadAction, createSlice } from '@reduxjs/toolkit'

type State = {
theme: 'light'
Expand Down
4 changes: 2 additions & 2 deletions src/views/Site.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { NativeStackScreenProps } from '@react-navigation/native-stack'

import { Image, RefreshControl, ScrollView, View } from 'react-native'
import { Image, View } from 'react-native'
import { BuildSettings } from '../components/BuildSettings'
import { Card } from '../components/Card'
import { DeploysPreview } from '../components/DeploysPreview'
import { NoPreview } from '../components/NoPreview'
import { SiteInformation } from '../components/SiteInformation'
import { SubmissionsPreview } from '../components/SubmissionsPreview'
import { AnimatedScrollView } from '../components/layout/ScrollView'
import { HooksPreview } from '../components/previews/hook'
import { useDeploys } from '../hooks/deploy'
import { useHooks } from '../hooks/hook'
import { useSite } from '../hooks/site'
import { useSubmissions } from '../hooks/submissions'
import { RootStackParamList } from '../navigators/RootStack'
import { AnimatedScrollView } from '../components/layout/ScrollView'

type Props = NativeStackScreenProps<RootStackParamList, 'Site'>

Expand Down

0 comments on commit a246a9e

Please sign in to comment.