We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0a54a0 commit ae13857Copy full SHA for ae13857
src/project/types/website/listing/website-listing-template.ts
@@ -318,7 +318,9 @@ export function reshapeListing(
318
listing: Listing,
319
format: Format,
320
): ReshapedListing {
321
- const reshaped = cloneDeep(listing) as Listing;
+ const reshaped = {
322
+ ...listing,
323
+ } as Listing;
324
325
// Add template utilities
326
const utilities = {} as Record<string, unknown>;
0 commit comments