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.