diff --git a/CHANGELOG.md b/CHANGELOG.md index 67193613b0..6b21d5a2da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/containers/AuthenticationPage/AuthenticationPage.duck.js b/src/containers/AuthenticationPage/AuthenticationPage.duck.js index 3de1a6c9d5..9f4524cfd9 100644 --- a/src/containers/AuthenticationPage/AuthenticationPage.duck.js +++ b/src/containers/AuthenticationPage/AuthenticationPage.duck.js @@ -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)); };