Merge branch 'group-currency-code' of github.com:whimcomp/spliit into whimcomp-group-currency-code

This commit is contained in:
Peter Smit
2025-09-05 10:46:04 +02:00
30 changed files with 4701 additions and 251 deletions

View File

@@ -1,12 +1,13 @@
'use client'
import { Money } from '@/components/money'
import { getBalances } from '@/lib/balances'
import { Currency } from '@/lib/currency'
import { useActiveUser } from '@/lib/hooks'
import { useTranslations } from 'next-intl'
type Props = {
groupId: string
currency: string
currency: Currency
expense: Parameters<typeof getBalances>[0][number]
}