Skip to content
Merged
Changes from all commits
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
10 changes: 2 additions & 8 deletions gui/src/pages/gui/StreamError.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,7 @@ const StreamErrorDialog = ({ error }: StreamErrorProps) => {
<GhostButton
className="flex flex-row items-center gap-2 rounded px-3 py-1.5"
onClick={() => {
ideMessenger.post("controlPlane/openUrl", {
path: GITHUB_LINK,
orgSlug: undefined,
});
ideMessenger.post("openUrl", GITHUB_LINK);
}}
>
<GithubIcon className="h-5 w-5" />
Expand All @@ -302,10 +299,7 @@ const StreamErrorDialog = ({ error }: StreamErrorProps) => {
<GhostButton
className="flex flex-row items-center gap-2 rounded px-3 py-1.5"
onClick={() => {
ideMessenger.post("controlPlane/openUrl", {
path: DISCORD_LINK,
orgSlug: undefined,
});
ideMessenger.post("openUrl", DISCORD_LINK);
}}
>
<DiscordIcon className="h-5 w-5" />
Expand Down
Loading