diff options
| author | Fuwn <[email protected]> | 2026-04-28 05:34:14 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-04-28 05:34:14 -0700 |
| commit | 1e149a29f6732c245364aa551fd08e2991310d98 (patch) | |
| tree | cbafe7526a00309a44a66e11913e8c3b7147f208 /src/lib/CommandPalette/toggleActions.ts | |
| parent | refactor(airing): unify countdown formatter into shared helper (diff) | |
| download | due.moe-1e149a29f6732c245364aa551fd08e2991310d98.tar.xz due.moe-1e149a29f6732c245364aa551fd08e2991310d98.zip | |
style: apply biome formatter
Diffstat (limited to 'src/lib/CommandPalette/toggleActions.ts')
| -rw-r--r-- | src/lib/CommandPalette/toggleActions.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/CommandPalette/toggleActions.ts b/src/lib/CommandPalette/toggleActions.ts index b93b5626..ca64ff5f 100644 --- a/src/lib/CommandPalette/toggleActions.ts +++ b/src/lib/CommandPalette/toggleActions.ts @@ -45,7 +45,9 @@ export const toggleActions = (current: Settings): CommandPaletteAction[] => { const titleIndex = TITLE_FORMATS.indexOf(current.displayTitleFormat); const nextTitle = TITLE_FORMATS[(titleIndex + 1) % TITLE_FORMATS.length]; - const outboundIndex = OUTBOUND_TARGETS.indexOf(current.displayOutboundLinksTo); + const outboundIndex = OUTBOUND_TARGETS.indexOf( + current.displayOutboundLinksTo, + ); const nextOutbound = OUTBOUND_TARGETS[(outboundIndex + 1) % OUTBOUND_TARGETS.length]; |