Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong asset name (affects: signup > terms of service modal) #1588

Merged
merged 2 commits into from
Feb 22, 2023
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ way to update this template, but currently, we follow a pattern:

## Upcoming version 2022-XX-XX

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

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

- [add] This adds support for page asset files that can be created in Console. These asset files are
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));
};