10000 fix: add workspace owner id as query param to websocket by jaaydenh · Pull Request #18363 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: add workspace owner id as query param to websocket #18363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 13, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: use defaultowner id
  • Loading branch information
jaaydenh committed Jun 13, 2025
commit b7054e51f8b13d11a8925ed597bfedd9823c0c0b
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const CreateWorkspacePageExperimental: FC = () => {

const socket = API.templateVersionDynamicParameters(
realizedVersionId,
"me",
defaultOwner.id,
{
onMessage,
onError: (error) => {
Expand All @@ -176,7 +176,7 @@ const CreateWorkspacePageExperimental: FC = () => {
return () => {
socket.close();
};
}, [realizedVersionId, onMessage]);
}, [realizedVersionId, onMessage, defaultOwner.id]);

const organizationId = templateQuery.data?.organization_id;

Expand Down
Loading
0