Skip to content

Commit 0c208dc

Browse files
committed
fix: remove unused error variable in sheet.ts catch block
1 parent 2439aca commit 0c208dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/src/block-parsers/sheet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export function parseSheetBlock(content: string): SheetBlock {
118118
if (restSheet) {
119119
try {
120120
Object.assign(sheet, parseKV(restSheet));
121-
} catch (e) {
121+
} catch {
122122
// Silently ignore parsing errors for optional sheet properties
123123
// Properties are validated at the type level
124124
}

0 commit comments

Comments
 (0)