From 52cbdce4ee12a9c7a0542ddf24328f71851e3fcf Mon Sep 17 00:00:00 2001 From: Hikari Date: Mon, 9 Mar 2026 13:21:32 -0700 Subject: [PATCH] style: fix key-spacing alignment --- src/index.ts | 4 ++-- src/interfaces/amari.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/index.ts b/src/index.ts index 5897655..5ee3529 100644 --- a/src/index.ts +++ b/src/index.ts @@ -59,8 +59,8 @@ const amari: Amari = { ], partials: [ Partials.Channel ], }), - github: octokit, - githubApp: githubApp, + github: octokit, + githubApp: githubApp, recentlyActiveChannels: new Set(), }; diff --git a/src/interfaces/amari.ts b/src/interfaces/amari.ts index 4749372..e642d45 100644 --- a/src/interfaces/amari.ts +++ b/src/interfaces/amari.ts @@ -8,8 +8,8 @@ import type { Client } from "discord.js"; import type { App } from "octokit"; export interface Amari { - discord: Client; - github: App["octokit"]; - githubApp: App; + discord: Client; + github: App["octokit"]; + githubApp: App; recentlyActiveChannels: Set; }