Skip to content

Commit

Permalink
Use config for URLs (#1015)
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <[email protected]>
  • Loading branch information
aaronchongth authored Oct 2, 2024
1 parent 03d747d commit 238bb15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dashboard/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ const tasksWorkspace: InitialWindow[] = [
export default function App() {
return (
<RmfDashboard
apiServerUrl="http://localhost:8000"
trajectoryServerUrl="http://localhost:8006"
apiServerUrl={appConfig.rmfServerUrl}
trajectoryServerUrl={appConfig.trajectoryServerUrl}
authenticator={new StubAuthenticator()}
helpLink={appConfig.helpLink}
reportIssueLink={appConfig.reportIssue}
Expand Down

0 comments on commit 238bb15

Please sign in to comment.