```diff
--- test_files/441-original.txt	2025-03-07 19:07:00
+++ test_files/441-modified.txt	2025-03-07 19:07:00
@@ -1,6 +1,7 @@
+/* eslint-disable no-console */
 import chalk from "chalk";
 import { Command } from "commander";
-import { getClientBaseConfig } from "../sdk/utils/config";
+import { getSDKConfig } from "../sdk/utils/config";
 
 export default class WhoamiCommand {
   private program: Command;
@@ -9,18 +10,18 @@
     this.program = program;
     this.program
       .command("whoami")
-      .description("Display current user information")
+      .description("Display current authentication information")
       .action(this.handleAction.bind(this));
   }
 
-  private handleAction(options: Record<string, any>): void {
-    const { apiKey, baseURL } = getClientBaseConfig();
+  private handleAction(): void {
+    const { apiKey, baseURL } = getSDKConfig();
 
     if (!apiKey) {
       console.log(
         chalk.red(
-          "You are not authenticated. Please run `composio login` to authenticate.",
-        ),
+          "You are not authenticated. Please run `composio login` to authenticate."
+        )
       );
       return;
     }
@@ -28,7 +29,7 @@
     console.log(`\n🔑  API Key:  ${chalk.cyan(apiKey)}`);
     console.log(`🌐  Base URL: ${chalk.cyan(baseURL)}`);
     console.log(
-      `${chalk.yellow("✨")} You are authenticated and ready to use Composio! ${chalk.yellow("✨")} \n`,
+      `${chalk.yellow("✨")} You are authenticated and ready to use Composio! ${chalk.yellow("✨")} \n`
     );
   }
 }
```
