style: apply oxfmt

This commit is contained in:
Peter Steinberger
2026-01-19 01:11:42 +00:00
parent 6a4b5fa4b5
commit 99bf65c539
5 changed files with 22 additions and 38 deletions

View File

@@ -36,20 +36,20 @@ export function createMessageCliHelpers(
await runCommandWithRuntime(
defaultRuntime,
async () => {
await messageCommand(
{
...(() => {
const { account, ...rest } = opts;
return {
...rest,
accountId: typeof account === "string" ? account : undefined,
};
})(),
action,
},
deps,
defaultRuntime,
);
await messageCommand(
{
...(() => {
const { account, ...rest } = opts;
return {
...rest,
accountId: typeof account === "string" ? account : undefined,
};
})(),
action,
},
deps,
defaultRuntime,
);
},
(err) => {
defaultRuntime.error(danger(String(err)));