diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a15c9b13..0e5c4c1b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/containers/AuthenticationPage/AuthenticationPage.duck.js b/src/containers/AuthenticationPage/AuthenticationPage.duck.js index 3de1a6c9d..9f4524cfd 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)); };