Skip to content

Commit

Permalink
fix(mobile): remove refetching indicator on budgets (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
duongdev committed Sep 10, 2024
1 parent 54f3037 commit a83b2aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions apps/api/v1/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ import walletsApp from './routes/wallets'
export const hono = new Hono()
.use('*', authMiddleware)

.route('/exchange-rates', exchangeRatesApp)

.route('/auth', authApp)
.route('/budgets', budgetsApp)
.route('/categories', categoriesApp)
.route('/users', usersApp)
.route('/transactions', transactionsApp)
.route('/wallets', walletsApp)
.route('/exchange-rates', exchangeRatesApp)
2 changes: 1 addition & 1 deletion apps/mobile/app/(app)/(tabs)/budgets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export default function BudgetsScreen() {
showsVerticalScrollIndicator={false}
ListHeaderComponent={<Animated.View style={dummyHeaderStyle} />}
contentContainerStyle={{ paddingBottom: bottom + 80 }}
refreshing={isRefetching}
refreshing={false}
onRefresh={refetch}
sections={sections}
keyExtractor={(item) => item.id}
Expand Down

0 comments on commit a83b2aa

Please sign in to comment.