mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-21 10:13:18 +00:00
Review
This commit is contained in:
@ -37,7 +37,7 @@ const MakerPage = (): React.JSX.Element => {
|
||||
mode: fav.mode,
|
||||
coordinator: 'robosats',
|
||||
},
|
||||
premium: Number(maker.premium ?? null),
|
||||
premium: maker.premium ?? null,
|
||||
paymentMethods: maker.paymentMethods,
|
||||
amountFilter: {
|
||||
amount: maker.amount,
|
||||
|
@ -8,7 +8,7 @@ export interface Maker {
|
||||
paymentMethods: string[];
|
||||
paymentMethodsText: string;
|
||||
badPaymentMethod: boolean;
|
||||
premium: number | string;
|
||||
premium: number | null;
|
||||
satoshis: string;
|
||||
publicExpiryTime: Date;
|
||||
publicDuration: number;
|
||||
@ -34,7 +34,7 @@ export const defaultMaker: Maker = {
|
||||
paymentMethods: [],
|
||||
paymentMethodsText: 'not specified',
|
||||
badPaymentMethod: false,
|
||||
premium: '',
|
||||
premium: null,
|
||||
satoshis: '',
|
||||
publicExpiryTime: new Date(0, 0, 0, 23, 59),
|
||||
publicDuration: 86340,
|
||||
|
Reference in New Issue
Block a user