Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Rename https://mkr.market -> https://oasisdex.com #4701

Merged
merged 1 commit into from
Feb 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/src/views/Web/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { parse as parseUrl } from 'url';

import { encodePath, encodeUrl } from '~/util/dapplink';

const DEFAULT_URL = 'https://mkr.market';
const DEFAULT_URL = 'https://oasisdex.com';
const LS_LAST_ADDRESS = '_parity::webLastAddress';

const hasProtocol = /^https?:\/\//;
Expand Down
5 changes: 2 additions & 3 deletions js/src/views/Web/web.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@
import { shallow } from 'enzyme';
import React from 'react';

import { DEFAULT_URL } from './store';
import Web from './';

const TEST_URL = 'https://mkr.market';

let api;
let component;

Expand All @@ -30,7 +29,7 @@ function createApi () {
return api;
}

function render (url = TEST_URL) {
function render (url = DEFAULT_URL) {
component = shallow(
<Web params={ { url } } />,
{
Expand Down