Migrate to a monorepo structure (#2909)
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
export const ExpirationDates: {
|
||||
value: number | null;
|
||||
label: string;
|
||||
}[] = [
|
||||
{ label: '15 days', value: 15 },
|
||||
{ label: '30 days', value: 30 },
|
||||
{ label: '90 days', value: 90 },
|
||||
{ label: '1 year', value: 365 },
|
||||
{ label: '2 years', value: 2 * 365 },
|
||||
{ label: 'Never', value: null },
|
||||
];
|
||||
Reference in New Issue
Block a user