Skip to content

Commit 6b36c2a

Browse files
committed
more lint fixes
1 parent 20a7afa commit 6b36c2a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

internal/datastore/src/errors/mi-not-found-error.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ export default class MiNotFoundError extends Error {
66
public readonly supplierId: string,
77
public readonly miId: string,
88
) {
9-
super(`Management information not found: supplierId=${supplierId}, miId=${miId}`);
9+
super(
10+
`Management information not found: supplierId=${supplierId}, miId=${miId}`,
11+
);
1012
this.name = "MiNotFoundError";
1113
}
1214
}

0 commit comments

Comments
 (0)