fix: bug
This commit is contained in:
parent
ab0bcc8721
commit
a74f52cc51
2
.npmrc
2
.npmrc
|
|
@ -1,2 +1,2 @@
|
|||
@repo:registry=https://gitea.bowongai.com/api/packages/bowong/npm/
|
||||
//gitea.bowongai.com/api/packages/bowong/npm/:_authToken=43a1f5492d9f27ad8a9de598e27693fef1aa837c
|
||||
//gitea.bowongai.com/api/packages/bowong/npm/:_authToken=43a1f5492d9f27ad8a9de598e27693fef1aa837c
|
||||
|
|
@ -41,7 +41,7 @@ const Toast = (function () {
|
|||
// insets = staticInsets
|
||||
// })
|
||||
|
||||
let toastTimer: number | null = null
|
||||
let toastTimer: ReturnType<typeof setTimeout> | null = null
|
||||
const show = (params?: ShowParams): void => {
|
||||
const { renderContent, title, duration = 2000, hideBackdrop = true } = params || {}
|
||||
hide()
|
||||
|
|
@ -90,7 +90,7 @@ const Toast = (function () {
|
|||
}
|
||||
|
||||
// loading
|
||||
let loadingTimer: number | null = null
|
||||
let loadingTimer: ReturnType<typeof setTimeout> | null = null
|
||||
const showLoading = (params?: ShowParams): void => {
|
||||
const { renderContent, title, duration = 1500, hideBackdrop = false } = params || {}
|
||||
hideLoading()
|
||||
|
|
|
|||
|
|
@ -2,9 +2,10 @@
|
|||
"name": "expo-duooomi-app",
|
||||
"main": "expo-router/entry",
|
||||
"version": "1.0.0",
|
||||
"packageManager": "bun@1.3.3",
|
||||
"packageManager": "bun@1.3.5",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"claude": "claude --dangerously-skip-permissions",
|
||||
"start": "dotenv -e .env.development -- expo start",
|
||||
"start:test": "dotenv -e .env.test -- expo start",
|
||||
"start:prod": "dotenv -e .env.production -- expo start",
|
||||
|
|
@ -31,8 +32,8 @@
|
|||
"export:icp:ios:skip": "bun run scripts/export-icp-source.ts --platform ios --skip-prebuild"
|
||||
},
|
||||
"dependencies": {
|
||||
"@repo/core": "0.0.1",
|
||||
"@repo/sdk": "0.0.1",
|
||||
"@repo/core": "1.0.1",
|
||||
"@repo/sdk": "1.0.1",
|
||||
"@better-auth/expo": "^1.4.5",
|
||||
"@expo/vector-icons": "^15.0.3",
|
||||
"@react-native-async-storage/async-storage": "^2.2.0",
|
||||
|
|
|
|||
Loading…
Reference in New Issue