Skip to content

Commit

Permalink
fix: omit image from basic field
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneRifle committed Oct 16, 2024
1 parent cd37fb7 commit c67610a
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 Omit<BasicField, BasicField.Image>]: BuilderSidebarFieldMeta
} = {
// [BasicField.Image]: {
// label: 'Image',
Expand Down

0 comments on commit c67610a

Please sign in to comment.