From 25ff7918e8ee8aaa9a4a2dbc8ddd27143b102bed Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 17 Dec 2024 12:55:18 +1000 Subject: [PATCH] chore(ui): knip --- invokeai/frontend/web/src/common/util/result.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/common/util/result.ts b/invokeai/frontend/web/src/common/util/result.ts index 54524d0ed9..e79d03122c 100644 --- a/invokeai/frontend/web/src/common/util/result.ts +++ b/invokeai/frontend/web/src/common/util/result.ts @@ -57,7 +57,7 @@ export class Err { * @template T The type of the value in the `Ok` case. * @template E The type of the error in the `Err` case. */ -export type Result = Ok | Err; +type Result = Ok | Err; /** * Creates a successful result.