Skip to content

Commit 81ff7cf

Browse files
committed
fmt
1 parent ed6ed68 commit 81ff7cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/e2e/src/init.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,7 @@ export const init = async (
132132
const localContextPath = process.env['NAGA_LOCAL_CONTEXT_PATH'];
133133
if (localContextPath) {
134134
// Type guard: verify the module exposes withLocalContext so TypeScript narrows it to NagaLocal.
135-
const isNagaLocalModule = (
136-
module: unknown
137-
): module is NagaLocalModule =>
135+
const isNagaLocalModule = (module: unknown): module is NagaLocalModule =>
138136
!!module &&
139137
typeof (module as { withLocalContext?: unknown }).withLocalContext ===
140138
'function';

packages/networks/src/networks/vNaga/envs/naga-local/naga-local.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ function assertIsNagaLocalSignatures(
3535
typeof (contract as { methods?: unknown }).methods !== 'object'
3636
) {
3737
throw new Error(
38-
`Generated signatures missing required contract metadata for ${key as string}`
38+
`Generated signatures missing required contract metadata for ${
39+
key as string
40+
}`
3941
);
4042
}
4143
}

0 commit comments

Comments
 (0)