Skip to content

Commit

Permalink
fix: omit nric, uen from basic field
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneRifle committed Oct 16, 2024
1 parent 9c8309f commit 51bb94f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type BuilderSidebarFieldMeta = {
// !!! Do not use this to reference field titles for MyInfo fields. !!!
// !!! Use MYINFO_ATTRIBUTE_MAP in ~/shared/constants/field/myinfo/index.ts instead !!!
export const BASICFIELD_TO_DRAWER_META: {
[key in BasicField]: BuilderSidebarFieldMeta
[key in Exclude<BasicField, BasicField.Nric | BasicField.Uen>]: BuilderSidebarFieldMeta
} = {
[BasicField.Image]: {
label: 'Image',
Expand Down

0 comments on commit 51bb94f

Please sign in to comment.