Skip to content

Commit 86b9adc

Browse files
committed
regen
1 parent fdd57ea commit 86b9adc

43 files changed

Lines changed: 3706 additions & 4337 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

codegen/layouts/partials/route-imports.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ import {
3838
import { SeamHttpRequest } from 'lib/seam/connect/seam-http-request.js'
3939
import { SeamPaginator } from 'lib/seam/connect/seam-paginator.js'
4040

41-
{{#if skipClientSessionImport}}
41+
{{#unless skipClientSessionImport}}
4242
import { SeamHttpClientSessions } from 'lib/seam/connect/routes/client-sessions/index.js'
43-
{{/if}}
43+
{{/unless}}
4444

4545
{{#each subroutes}}
4646
import { {{className}} } from './{{fileName}}'

codegen/lib/connect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const setRouteLayoutContext = (
119119
): void => {
120120
file.className = getClassName(node?.path ?? null)
121121
file.skipClientSessionImport =
122-
node?.path === '/client_sessions' || node?.path === '/'
122+
node == null || node?.path === '/client_sessions'
123123

124124
file.endpoints = []
125125
if (node != null && 'endpoints' in node) {

0 commit comments

Comments
 (0)