Skip to content

Commit

Permalink
Merge pull request #213 from LordTocs/hackathon
Browse files Browse the repository at this point in the history
Hardcode urls because things aren't working
  • Loading branch information
LordTocs authored Nov 4, 2024
2 parents 08d724b + baca178 commit 974e1e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libs/castmate-core/src/pubsub/pubsub-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ReactiveEffect, autoRerun } from "../reactivity/reactivity"

const logger = usePluginLogger("pubsub")

const baseURL = import.meta.env.VITE_CASTMATE_URL
const baseURL = "https://api.castmate.io/"
/**
* PubSubManager connects to the azure-pubsub allowing realtime events from the cloud.
*/
Expand Down
2 changes: 1 addition & 1 deletion plugins/dashboards/main/src/dashboard-access.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { createDashboardConfigEvaluator, DashboardConfigEvaluator } from "./dash
import { DashboardConfig } from "castmate-plugin-dashboards-shared"
import { DashboardWidgetManager } from "./dashboard-widgets"

const API_BASE_URL = import.meta.env.VITE_CASTMATE_URL
const API_BASE_URL = "https://api.castmate.io"

interface RemoteDashboardInfo {
ownerId: string
Expand Down
2 changes: 1 addition & 1 deletion plugins/dashboards/main/src/dashboard-resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import _isEqual from "lodash/isEqual"
import { TwitchAccount } from "castmate-plugin-twitch-main"
import { DashboardAccessService } from "./dashboard-access"

const API_BASE_URL = import.meta.env.VITE_CASTMATE_URL
const API_BASE_URL = "https://api.castmate.io"

const logger = usePluginLogger("dashboards")

Expand Down

0 comments on commit 974e1e4

Please sign in to comment.