Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 5e3acdb

Browse files
committed
Fix lints
1 parent ccf9473 commit 5e3acdb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/SlashCommands.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,9 @@ export const Commands = [
297297
return success((async () => {
298298
const unixTimestamp = Date.parse(args);
299299
if (!unixTimestamp) {
300-
throw new Error(`We were unable to understand the given date (${args}). Try using the format YYYY-MM-DD.`);
300+
throw new Error(
301+
`We were unable to understand the given date (${args}). Try using the format YYYY-MM-DD.`,
302+
);
301303
}
302304

303305
const cli = MatrixClientPeg.get();

0 commit comments

Comments
 (0)