update translation

This commit is contained in:
Mark Kaylor 2022-02-14 14:52:05 +01:00
parent bd4c073871
commit eda76ecc7c

View File

@ -40,6 +40,11 @@ const MarketPlacePage = () => {
const toggleNotification = useNotification();
const { notifyStatus } = useNotifyAT();
const title = formatMessage({
id: 'admin.pages.MarketPlacePage.title',
defaultMessage: 'Marketplace',
});
const notifyLoad = () => {
notifyStatus(
formatMessage(
@ -47,7 +52,7 @@ const MarketPlacePage = () => {
id: 'app.utils.notify.data-loaded',
defaultMessage: 'The {target} has loaded',
},
{ target: 'test' }
{ target: title }
)
);
};
@ -62,7 +67,6 @@ const MarketPlacePage = () => {
});
const isLoading = status !== 'success' && status !== 'error';
console.log('plugins', data);
useEffect(() => {
trackUsage('didGoToMarketplace');