style: apply oxfmt fixes

This commit is contained in:
Peter Steinberger
2026-01-15 01:53:14 +00:00
parent ad8799522c
commit 1b79730db8
11 changed files with 20 additions and 23 deletions

View File

@@ -7,10 +7,7 @@ type ChannelConfigWithAccounts = {
accounts?: Record<string, { configWrites?: boolean }>;
};
function resolveAccountConfig(
accounts: ChannelConfigWithAccounts["accounts"],
accountId: string,
) {
function resolveAccountConfig(accounts: ChannelConfigWithAccounts["accounts"], accountId: string) {
if (!accounts || typeof accounts !== "object") return undefined;
if (accountId in accounts) return accounts[accountId];
const matchKey = Object.keys(accounts).find(