Skip to content

Commit 5166261

Browse files
committed
fix(inertia head): fixed comma being rendered in the head
1 parent 62a74b6 commit 5166261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

providers/InertiaProvider/InertiaProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default class InertiaProvider {
4343
View.global('inertiaHead', (page: Record<string, unknown>) => {
4444
const { ssrHead = [] }: { ssrHead?: string[] } = page || {};
4545

46-
return ssrHead.join();
46+
return ssrHead.join('\n');
4747
});
4848
}
4949

0 commit comments

Comments
 (0)