Skip to content

Commit fa86464

Browse files
author
Jon Myrick
authored
Merge pull request CodewarsClone#106 from CodewarsClone/MenuEtc
fixed Docker server location
2 parents e337a80 + 46ad2c8 commit fa86464

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/mainService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ angular.module('app').service('mainService', function($http, $q, $sce, $state) {
1212
this.testExamples = (solution, examples) => {
1313
return $http({
1414
method: 'POST',
15-
url: `http://192.168.0.186:3030/api/test/examples`,
15+
url: `/api/test/examples`,
1616
data: {
1717
script: solution,
1818
examples: examples
@@ -25,7 +25,7 @@ angular.module('app').service('mainService', function($http, $q, $sce, $state) {
2525
this.testSuite = (solution, kataid) => {
2626
return $http({
2727
method: 'POST',
28-
url: `http://192.168.0.186:3030/api/test/suite/${kataid}`,
28+
url: `/api/test/suite/${kataid}`,
2929
data: {
3030
script: solution
3131
}

0 commit comments

Comments
 (0)