refactor: use apiUrl

This commit is contained in:
karishmas6
2024-11-01 08:26:13 +05:30
parent 5cbab56386
commit 28a924bf0f
3 changed files with 6 additions and 3 deletions

View File

@@ -13,6 +13,7 @@ import { RunSettings } from "../components/molecules/RunSettings";
import { ScheduleSettings } from "../components/molecules/ScheduleSettings";
import { IntegrationSettings } from "../components/molecules/IntegrationSettings";
import { RobotSettings } from "../components/molecules/RobotSettings";
import { apiUrl } from "../apiConfig";
interface MainPageProps {
handleEditRecording: (id: string, fileName: string) => void;
@@ -88,7 +89,7 @@ export const MainPage = ({ handleEditRecording }: MainPageProps) => {
createRunForStoredRecording(runningRecordingId, settings).then(({ browserId, runId }: CreateRunResponse) => {
setIds({ browserId, runId });
const socket =
io(`http://localhost:8080/${browserId}`, {
io(`${apiUrl}/${browserId}`, {
transports: ["websocket"],
rejectUnauthorized: false
});