Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Revert 54064 and 53396" #54263

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: change timestamp type from Date to string in DismissedProdu…
…ctTraining
  • Loading branch information
ishpaul777 committed Dec 18, 2024
commit e9e3c218da6164dfc15cff742289c9a435cc69eb
18 changes: 9 additions & 9 deletions src/types/onyx/DismissedProductTraining.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,47 +17,47 @@ type DismissedProductTraining = {
/**
* When user dismisses the nudgeMigration Welcome Modal, we store the timestamp here.
*/
[CONST.MIGRATED_USER_WELCOME_MODAL]: Date;
[CONST.MIGRATED_USER_WELCOME_MODAL]: string;

/**
* When user dismisses the conciergeLHNGBR product training tooltip, we store the timestamp here.
*/
[CONCEIRGE_LHN_GBR]: Date;
[CONCEIRGE_LHN_GBR]: string;

/**
* When user dismisses the renameSavedSearch product training tooltip, we store the timestamp here.
*/
[RENAME_SAVED_SEARCH]: Date;
[RENAME_SAVED_SEARCH]: string;

/**
* When user dismisses the workspaceChatCreate product training tooltip, we store the timestamp here.
*/
[WORKSAPCE_CHAT_CREATE]: Date;
[WORKSAPCE_CHAT_CREATE]: string;

/**
* When user dismisses the quickActionButton product training tooltip, we store the timestamp here.
*/
[QUICK_ACTION_BUTTON]: Date;
[QUICK_ACTION_BUTTON]: string;

/**
* When user dismisses the searchFilterButtonTooltip product training tooltip, we store the timestamp here.
*/
[SEARCH_FILTER_BUTTON_TOOLTIP]: Date;
[SEARCH_FILTER_BUTTON_TOOLTIP]: string;

/**
* When user dismisses the bottomNavInboxTooltip product training tooltip, we store the timestamp here.
*/
[BOTTOM_NAV_INBOX_TOOLTIP]: Date;
[BOTTOM_NAV_INBOX_TOOLTIP]: string;

/**
* When user dismisses the lhnWorkspaceChatTooltip product training tooltip, we store the timestamp here.
*/
[LHN_WORKSPACE_CHAT_TOOLTIP]: Date;
[LHN_WORKSPACE_CHAT_TOOLTIP]: string;

/**
* When user dismisses the globalCreateTooltip product training tooltip, we store the timestamp here.
*/
[GLOBAL_CREATE_TOOLTIP]: Date;
[GLOBAL_CREATE_TOOLTIP]: string;
};

export default DismissedProductTraining;
Loading