higher tip defaults
This commit is contained in:
parent
a97f8229b0
commit
e2aceee234
|
@ -42,7 +42,7 @@ export default function ItemAct ({ onClose, itemId, act, strike }) {
|
|||
append={<InputGroup.Text className='text-monospace'>sats</InputGroup.Text>}
|
||||
/>
|
||||
<div>
|
||||
{[1, 10, 100, 1000, 10000].map(num =>
|
||||
{[100, 1000, 10000, 100000].map(num =>
|
||||
<Button
|
||||
size='sm'
|
||||
className={`${num > 1 ? 'ml-2' : ''} mb-2`}
|
||||
|
|
|
@ -63,7 +63,7 @@ model User {
|
|||
referrees User[] @relation("referrals")
|
||||
|
||||
// tip settings
|
||||
tipDefault Int @default(10)
|
||||
tipDefault Int @default(100)
|
||||
turboTipping Boolean @default(false)
|
||||
|
||||
// notification settings
|
||||
|
|
Loading…
Reference in New Issue