about summary refs log tree commit diff
path: root/src/components/StarterPack
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-05-08 21:58:32 +0300
committerGitHub <noreply@github.com>2025-05-08 11:58:32 -0700
commit1c2a7b0b5a085fa1c2911e31824a178b23232b53 (patch)
tree1e9e646452e7240f448b695f1c4e9671d341207a /src/components/StarterPack
parenta6455b3de3f9c20b61e6791bb3f6c3ea29f65663 (diff)
downloadvoidsky-1c2a7b0b5a085fa1c2911e31824a178b23232b53.tar.zst
Fix some more warnings for web (#8316)
* export correct stub for web

* use default import for package.json
Diffstat (limited to 'src/components/StarterPack')
-rw-r--r--src/components/StarterPack/ShareDialog.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/StarterPack/ShareDialog.tsx b/src/components/StarterPack/ShareDialog.tsx
index 354d7bc4e..1d92c623c 100644
--- a/src/components/StarterPack/ShareDialog.tsx
+++ b/src/components/StarterPack/ShareDialog.tsx
@@ -1,7 +1,7 @@
 import {View} from 'react-native'
 import {Image} from 'expo-image'
 import {requestMediaLibraryPermissionsAsync} from 'expo-image-picker'
-import {AppBskyGraphDefs} from '@atproto/api'
+import {type AppBskyGraphDefs} from '@atproto/api'
 import {msg, Trans} from '@lingui/macro'
 import {useLingui} from '@lingui/react'
 
@@ -15,7 +15,7 @@ import {isNative, isWeb} from '#/platform/detection'
 import * as Toast from '#/view/com/util/Toast'
 import {atoms as a, useTheme} from '#/alf'
 import {Button, ButtonText} from '#/components/Button'
-import {DialogControlProps} from '#/components/Dialog'
+import {type DialogControlProps} from '#/components/Dialog'
 import * as Dialog from '#/components/Dialog'
 import {Loader} from '#/components/Loader'
 import {Text} from '#/components/Typography'