This commit is contained in:
dank074 2021-11-27 01:33:30 -06:00
parent 44a89f0262
commit ce1b1c5568
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
export const getNumItemsDisplayed = (): number =>
{
return Math.min(Math.max(2, Math.floor(window.screen.width / 135)), 7);
return Math.min(Math.max(2, Math.floor(window.screen.width / 135) - 3), 7);
}

View File

@ -1,7 +1,7 @@
export interface CalendarViewProps
{
close(): void;
openPackage(id: number, asStaff: boolean);
openPackage(id: number, asStaff: boolean): void;
receivedProducts: Map<number, string>;
campaignName: string;
currentDay: number;