Skip to content

Commit

Permalink
bugfix : change property name dateTimeCode
Browse files Browse the repository at this point in the history
  • Loading branch information
Happhee committed Sep 9, 2024
1 parent 22c36bc commit d911c13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const mockData: WorkbookSubscriptionInfo[] = [
rank: 0,
totalSubscriber: 100,
articleInfo: "{}",
subscription: { date: "1111111", time: "09:00" },
subscription: { dateTimeCode: "1111111", time: "09:00" },
},
{
id: 2,
Expand All @@ -23,7 +23,7 @@ const mockData: WorkbookSubscriptionInfo[] = [
rank: 0,
totalSubscriber: 1,
articleInfo: "{}",
subscription: { date: "1111111", time: "09:00" },
subscription: { dateTimeCode: "1111111", time: "09:00" },
},
{
id: 3,
Expand All @@ -33,7 +33,7 @@ const mockData: WorkbookSubscriptionInfo[] = [
rank: 0,
totalSubscriber: 2,
articleInfo: "{}",
subscription: { date: "0011111", time: "09:00" },
subscription: { dateTimeCode: "0011111", time: "09:00" },
},
];

Expand Down
2 changes: 1 addition & 1 deletion src/main/types/emailInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export interface SubscriptionEmailClientInfo {
}
export interface SubscriptionEmailServerInfo {
time: (typeof SUBSCRIPTION_EMAIL_SERVER_INFO.TIME)[keyof typeof SUBSCRIPTION_EMAIL_SERVER_INFO.TIME];
date: string;
dateTimeCode: string;
}

0 comments on commit d911c13

Please sign in to comment.