Skip to content
This repository has been archived by the owner on Mar 5, 2021. It is now read-only.

Commit

Permalink
Fix a couple broken imports because SupClient hierarchy changed
Browse files Browse the repository at this point in the history
  • Loading branch information
elisee committed Nov 2, 2016
1 parent 97a534f commit 3c3f6ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SupRuntime/src/Player.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as async from "async";
import supFetch from "../../../../SupClient/src/fetch";
import supFetch from "../../../../SupClient/fetch";

interface Project {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion SupRuntime/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import * as async from "async";
import * as querystring from "querystring";
import supFetch from "../../../../SupClient/src/fetch";
import supFetch from "../../../../SupClient/fetch";
import Player from "./Player";

// Any export here will be exposed as SupRuntime.* by browserify
Expand Down

0 comments on commit 3c3f6ef

Please sign in to comment.