Skip to content

Commit

Permalink
Merge pull request #228 from sharetribe/fix-wrong-asset-name-on-sign-up
Browse files Browse the repository at this point in the history
Fix wrong asset name on sign up
  • Loading branch information
Gnito authored Feb 22, 2023
2 parents e137477 + b538f8e commit ad45006
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ https://github.com/sharetribe/flex-template-web/

## Upcoming version 2023-XX-XX

- [fix] AuthenticationPage.duck.js: had wrong asset name.
[#228](https://github.com/sharetribe/ftw-hourly/pull/228)

## [v12.0.0] 2023-02-14

### Updates from upstream (FTW-daily v10.0.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { fetchPageAssets } from '../../ducks/hostedAssets.duck';
export const ASSET_NAME = 'terms-of-service';

export const loadData = (params, search) => dispatch => {
const pageAsset = { termsOfServicePage: `content/pages/${ASSET_NAME}.json` };
const pageAsset = { termsOfService: `content/pages/${ASSET_NAME}.json` };
return dispatch(fetchPageAssets(pageAsset, true));
};

0 comments on commit ad45006

Please sign in to comment.