Remove unused import from waha.
Some checks failed
Build Vite / build (24.x) (push) Has been cancelled

This commit is contained in:
天クマ 2026-08-18 18:08:49 -03:00
commit 28361f178d

View file

@ -1,7 +1,7 @@
import { config } from "./config";
import { showNotification } from "./notification";
import { getBase64 } from "./utils";
import type { Message, VersionResponse, AppUser, ContactInfo, UserAboutResponse, ChatPictureResponse, StatusResponse, GroupUser, Chat, Contact } from "./types";
import type { Message, VersionResponse, AppUser, ContactInfo, UserAboutResponse, ChatPictureResponse, StatusResponse, GroupUser, Contact } from "./types";
async function request<T>(path: string, options: RequestInit = {}): Promise<T> {
const url = `${config.wahaUrl}${path}`;