File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Shared/Hooks/useUserPreferences Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,15 +81,15 @@ export interface UseUserPreferencesProps {
81
81
export type UserPathValueMapType =
82
82
| {
83
83
path : 'themePreference'
84
- value : Pick < UpdatedUserPreferencesType , 'themePreference' | 'appTheme' >
84
+ value : Required < Pick < UpdatedUserPreferencesType , 'themePreference' | 'appTheme' > >
85
85
}
86
86
| {
87
87
path : 'pipelineRBACViewSelectedTab'
88
- value : Pick < UserPreferencesType , 'pipelineRBACViewSelectedTab' >
88
+ value : Required < Pick < UserPreferencesType , 'pipelineRBACViewSelectedTab' > >
89
89
}
90
90
| {
91
91
path : 'resources'
92
- value : BaseAppMetaData [ ]
92
+ value : Required < BaseAppMetaData [ ] >
93
93
}
94
94
95
95
export type UserPreferenceResourceProps = UserPathValueMapType & {
You can’t perform that action at this time.
0 commit comments