Skip to content

Commit b970d2c

Browse files
committed
Merge branch 'dev' into staging
2 parents 5560ffb + dd6eec2 commit b970d2c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/components/Home/HomeContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class HomeContainer extends React.Component<IProps, null> {
4646
<h2>Budgeting and resource allocation for decentralized organizations</h2>
4747
<div className={css.topCta}>
4848
{ process.env.NODE_ENV == 'production'
49-
? <a href='https://alchemy.daostack.io/#/dao/0xa3f5411cfc9eee0dd108bf0d07433b6dd99037f1'>View Alchemy</a>
49+
? <a href='https://alchemy.daostack.io/dao/0xa3f5411cfc9eee0dd108bf0d07433b6dd99037f1'>View Alchemy</a>
5050
: <Link to='/daos'>View Alchemy</Link>
5151
}
5252
</div>
@@ -71,7 +71,7 @@ class HomeContainer extends React.Component<IProps, null> {
7171
</div>
7272
</div>
7373
<div className={css.footer}>
74-
<a href='https://alchemy.daostack.io/#/dao/0xa3f5411cfc9eee0dd108bf0d07433b6dd99037f1'>Genesis Alpha</a>
74+
<a href='https://alchemy.daostack.io/dao/0xa3f5411cfc9eee0dd108bf0d07433b6dd99037f1'>Genesis Alpha</a>
7575
<a href="https://docs.google.com/document/d/1M1erC1TVPPul3V_RmhKbyuFrpFikyOX0LnDfWOqO20Q/" target='_blank'>FAQ</a>
7676
<a href="https://medium.com/daostack/new-introducing-alchemy-budgeting-for-decentralized-organizations-b81ba8501b23" target='_blank'>Alchemy 101</a>
7777
<a href="https://www.daostack.io/" target='_blank'>About DAOstack</a>

src/components/Proposal/ProposalContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ class ProposalContainer extends React.Component<IProps, IState> {
291291
};
292292

293293
const disqusConfig = {
294-
url: process.env.BASE_URL + "/#/dao/" + dao.avatarAddress + "/proposal/" + proposal.proposalId,
294+
url: process.env.BASE_URL + "/dao/" + dao.avatarAddress + "/proposal/" + proposal.proposalId,
295295
identifier: proposal.proposalId
296296
};
297297

src/components/Proposal/ViewProposalContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class ViewProposalContainer extends React.Component<IProps, null> {
4444
const { proposal } = this.props;
4545

4646
const disqusConfig = {
47-
url: process.env.BASE_URL + "/#" + this.props.location.pathname,
47+
url: process.env.BASE_URL + this.props.location.pathname,
4848
identifier: proposal.proposalId,
4949
title: proposal.title
5050
};

src/configureStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import createHistory from "history/createHashHistory";
1+
import createHistory from "history/createBrowserHistory";
22
import { routerMiddleware } from "react-router-redux";
33
import { applyMiddleware, compose, createStore } from "redux";
44
import { composeWithDevTools } from "redux-devtools-extension";

src/layouts/HeaderContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ class HeaderContainer extends React.Component<IProps, null> {
222222
<ul>
223223
<li><Link to='/'>Home</Link></li>
224224
{ process.env.NODE_ENV == 'production'
225-
? <li><a href='https://alchemy.daostack.io/#/dao/0xa3f5411cfc9eee0dd108bf0d07433b6dd99037f1'>Genesis Alpha</a></li>
225+
? <li><a href='https://alchemy.daostack.io/dao/0xa3f5411cfc9eee0dd108bf0d07433b6dd99037f1'>Genesis Alpha</a></li>
226226
: <li><Link to='/daos'>View DAOs</Link></li>
227227
}
228228
<li><a href="https://docs.google.com/document/d/1M1erC1TVPPul3V_RmhKbyuFrpFikyOX0LnDfWOqO20Q/" target='_blank'>FAQ</a></li>

0 commit comments

Comments
 (0)