🐛 Parse valid publicId even though the prefix is empty
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
import { toKebabCase } from '@/helpers/toKebabCase'
|
||||
|
||||
export const parseDefaultPublicId = (name: string, id: string) =>
|
||||
toKebabCase(name) + `-${id?.slice(-7)}`
|
||||
export const parseDefaultPublicId = (name: string, id: string) => {
|
||||
const prefix = toKebabCase(name)
|
||||
return `${prefix !== '' ? `${prefix}-` : ''}${id?.slice(-7)}`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user