Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.

Commit b8d85f3

Browse files
committed
fix: get actor in remote driver
1 parent c986513 commit b8d85f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/rivetkit/src/remote-manager-driver/api-endpoints.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ import { apiCall } from "./api-utils";
1515
// MARK: Get actor
1616
export async function getActor(
1717
config: ClientConfig,
18-
name: string,
18+
_: string,
1919
actorId: RivetId,
2020
): Promise<ActorsListResponse> {
2121
return apiCall<never, ActorsListResponse>(
2222
config,
2323
"GET",
24-
`/actors?name=${name}&actor_ids=${encodeURIComponent(actorId)}`,
24+
`/actors?actor_ids=${encodeURIComponent(actorId)}`,
2525
);
2626
}
2727

0 commit comments

Comments
 (0)