Skip to content

Commit

Permalink
Revert "Use 64"
Browse files Browse the repository at this point in the history
This reverts commit e8f505f.
  • Loading branch information
flvndvd committed Apr 4, 2024
1 parent e8f505f commit f04e9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/src/shared/utils/structured_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function makeStructuredDataTableName(name: string, externalId: string) {
const externalIdPrefix = lowercasedExternalId.substring(0, 4);
const externalIdSuffix = lowercasedExternalId.slice(-4);

const truncatedName = name.substring(0, 64);
const truncatedName = name.substring(0, 32);

return slugify(`${truncatedName}_${externalIdPrefix}_${externalIdSuffix}`);
}
Expand Down

0 comments on commit f04e9c9

Please sign in to comment.