Skip to content

Commit 2b17e47

Browse files
Comment out media profile record group
Avatar and header are now handled separately as built-in profile fields rather than as part of the profile record options. Keep the media record code commented for future reference. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b0f4140 commit 2b17e47

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/constants/profileRecordOptions.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,12 @@ const general: ProfileRecord[] = supportedGeneralRecordKeys.map((key) => ({
3232
type: 'text',
3333
}))
3434

35-
const media: ProfileRecord[] = supportedMediaRecordKeys.map((key) => ({
36-
key,
37-
group: 'media',
38-
type: 'text',
39-
}))
35+
// NOTE: Removed because avatar and header are not build into profile. Leaving this here as reference.
36+
// const media: ProfileRecord[] = supportedMediaRecordKeys.map((key) => ({
37+
// key,
38+
// group: 'media',
39+
// type: 'text',
40+
// }))
4041

4142
const social: ProfileRecord[] = supportedSocialRecordKeys.map((key) => ({
4243
key,

0 commit comments

Comments
 (0)