diff --git a/frontend/app/components/Dashboard/Dashboard.js b/frontend/app/components/Dashboard/Dashboard.js index c5ecbc530..0949c8285 100644 --- a/frontend/app/components/Dashboard/Dashboard.js +++ b/frontend/app/components/Dashboard/Dashboard.js @@ -47,7 +47,7 @@ import { withRouter } from 'react-router'; const OVERVIEW = 'overview'; const PERFORMANCE = 'performance'; -const ERRORS_N_CRASHES = 'errors_n_crashes'; +const ERRORS_N_CRASHES = 'errors'; const RESOURCES = 'resources'; const CUSTOM_METRICS = 'custom_metrics'; diff --git a/frontend/app/duck/user.js b/frontend/app/duck/user.js index 13ff44af5..857fcd9e5 100644 --- a/frontend/app/duck/user.js +++ b/frontend/app/duck/user.js @@ -178,7 +178,7 @@ export function resendEmailVerification(email) { export function updateAppearance(appearance) { return { types: UPDATE_APPEARANCE.toArray(), - call: client => client.post('/account', { + call: client => client.post('/account/appearance', { appearance: Record.isRecord(appearance) ? appearance.toData() : appearance }), appearance,