feat: ship creator journey v2 and profile updates
This commit is contained in:
@@ -889,7 +889,7 @@ export default function UploadPage({ draftId, filesCdnUrl, chunkSize, chunkReque
|
||||
{availableTypes.map((ct) => {
|
||||
const active = String(ct.id) === String(state.metadata.type)
|
||||
const iconKey = getTypeKey(ct)
|
||||
const iconPath = `/gfx/mascot_${iconKey}.webp`
|
||||
const iconPath = ct?.mascot_url || `/gfx/mascot_${iconKey}.webp`
|
||||
return (
|
||||
<button
|
||||
key={ct.id}
|
||||
@@ -1030,7 +1030,6 @@ export default function UploadPage({ draftId, filesCdnUrl, chunkSize, chunkReque
|
||||
dispatch({ type: 'SET_METADATA', payload: { tags: nextTags.join(', ') } })
|
||||
}}
|
||||
suggestedTags={suggestedTags}
|
||||
maxTags={15}
|
||||
minLength={2}
|
||||
maxLength={32}
|
||||
searchEndpoint="/api/tags/search"
|
||||
|
||||
Reference in New Issue
Block a user