Skip to content

Commit df9e10c

Browse files
committed
CCM-11148 typo
1 parent d448118 commit df9e10c

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

frontend/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const config = {
4848
Number(process.env.NEXT_PUBLIC_PROMPT_SECONDS_BEFORE_LOGOUT) || 120, // 2 minutes before logout
4949
};
5050

51-
export default async function RootLayout({
51+
export default function RootLayout({
5252
children,
5353
}: {
5454
children: React.ReactNode;

lambdas/backend-client/src/schemas/client.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { ClientConfiguration, ClientFeatures } from '../types/generated';
55
const $ClientFeatures = schemaFor<ClientFeatures>()(
66
z.object({
77
proofing: z.boolean(),
8-
// TODO: CCM-11148 Make routing required
98
routing: z.boolean().optional(),
109
})
1110
);

tests/test-team/helpers/client/client-helper.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export type ClientConfiguration = {
88
campaignId?: string;
99
features: {
1010
proofing: boolean;
11-
// TODO: CCM-11148 Make routing flag required
1211
routing?: boolean;
1312
};
1413
name?: string;
@@ -86,7 +85,7 @@ export class ClientConfigurationHelper {
8685
constructor(
8786
private readonly clientSSMKeyPrefix: string,
8887
private readonly runId: string
89-
) {}
88+
) { }
9089

9190
async setup() {
9291
return Promise.all(

0 commit comments

Comments
 (0)