Skip to content

Commit

Permalink
addted exoiry dates array
Browse files Browse the repository at this point in the history
  • Loading branch information
suyeshs committed Sep 26, 2023
1 parent 405445b commit 583d4cb
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion src/stores/ExpiryDateStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,26 @@ export class ExpiryDateStore {
} catch (error) {
console.error(`Error fetching expiry dates for symbol: ${symbol}`, error);
// Set expiry date to a hard-coded value
this.setExpiryDates(["28-Sept-2023"]);
this.setExpiryDates([
"28-Sep-2023",
"05-Oct-2023",
"12-Oct-2023",
"19-Oct-2023",
"26-Oct-2023",
"02-Nov-2023",
"30-Nov-2023",
"28-Dec-2023",
"28-Mar-2024",
"27-Jun-2024",
"26-Dec-2024",
"26-Jun-2025",
"24-Dec-2025",
"25-Jun-2026",
"31-Dec-2026",
"24-Jun-2027",
"30-Dec-2027",
"29-Jun-2028"
]);
} finally {
this.isLoading = false;
}
Expand Down

2 comments on commit 583d4cb

@vercel
Copy link

@vercel vercel bot commented on 583d4cb Sep 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tradepodapp – ./

tradepodapp-git-master-suyeshs.vercel.app
tradepodapp.vercel.app
tradepodapp-suyeshs.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 583d4cb Sep 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tradepod – ./

tradepod-suyeshs.vercel.app
tradepod-git-master-suyeshs.vercel.app
tradepod.vercel.app

Please sign in to comment.