Fix typing of GOT_FEEDBACK action

This commit is contained in:
Jordan Eldredge 2025-06-05 17:47:18 -04:00
parent 1761e9101f
commit 12ec93d2d2

View file

@ -18,7 +18,12 @@ export type ApiAction =
| { type: "CLASSIC_SKIN_UPLOADED"; md5: string }
| { type: "MODERN_SKIN_UPLOADED"; md5: string }
| { type: "SKIN_UPLOAD_ERROR"; uploadId: string; message: string }
| { type: "GOT_FEEDBACK"; message: string; email?: string; url?: string }
| {
type: "GOT_FEEDBACK";
message: string;
email?: string | null;
url?: string | null;
}
| {
type: "SYNCED_TO_ARCHIVE";
successes: number;