Skip to content

Commit

Permalink
Merge pull request #16 from koskedk/dev
Browse files Browse the repository at this point in the history
https support on client
  • Loading branch information
koskedk authored Sep 10, 2019
2 parents 3c79128 + 945c801 commit 5c6adbc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/client/src/containers/court/DocketScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface State {
activeDocket: Docket;
}

const url = `http://${window.location.hostname}:4720/api/v1/courts/dockets/`;
const url = `https://${window.location.hostname}:4720/api/v1/courts/dockets/`;

export class DocketScene extends Component<{}, State> {
private messages: any;
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/containers/transfers/ProfileScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface State {
}

// @ts-ignore
const url = `http://${window.location.hostname}:4720/api/v1/transfers/manifests/`;
const url = `https://${window.location.hostname}:4720/api/v1/transfers/manifests/`;

export class ProfileScene extends Component<any, State> {
private messages: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface State {
profileSummary: ProfileSummary;
}

let url = `http://${window.location.hostname}:4720/api/v1/transfers/facilities/`;
let url = `https://${window.location.hostname}:4720/api/v1/transfers/facilities/`;

class ProfileShowcase extends Component<Props, State> {
private messages: any;
Expand Down

0 comments on commit 5c6adbc

Please sign in to comment.