From c5aac8670f5f0f8055c304d57c6b8972e24a997d Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 21:01:20 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- sdks/actor/runtime/src/event.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/actor/runtime/src/event.ts b/sdks/actor/runtime/src/event.ts index 353ae3a3c..e274e6a14 100644 --- a/sdks/actor/runtime/src/event.ts +++ b/sdks/actor/runtime/src/event.ts @@ -1,3 +1,4 @@ +import type { Metadata } from "@rivet-gg/actor-core"; import type * as wsToClient from "@rivet-gg/actor-protocol/ws/to_client"; import * as wsToServer from "@rivet-gg/actor-protocol/ws/to_server"; import type { WSMessageReceive } from "hono/ws"; @@ -6,7 +7,6 @@ import type { Connection, IncomingWebSocketMessage } from "./connection"; import * as errors from "./errors"; import { Rpc } from "./rpc"; import { assertUnreachable } from "./utils"; -import type { Metadata } from "@rivet-gg/actor-core"; interface MessageEventConfig { protocol: { maxIncomingMessageSize: number };