@@ -66,7 +71,6 @@ export const ExpandedHeader = () => {
- )
);
};
diff --git a/src/i18n/messages/pt_BR.json b/src/i18n/messages/pt_BR.json
index 774b6715..8a367ebd 100644
--- a/src/i18n/messages/pt_BR.json
+++ b/src/i18n/messages/pt_BR.json
@@ -12,7 +12,7 @@
"leanerDashboard.confirmEmailTextReminderBanner": "Remember to confirm your email so that you can keep learning on edX! {confirmNowButton}.",
"leanerDashboard.verifiedConfirmEmailButton": "I've confirmed my email",
"leanerDashboard.confirmEmailModalHeader": "Confirm your email",
- "leanerDashboard.confirmEmailModalBody": "We've sent you an email to verify your acccount. Please check your inbox and click on the big red button to confirm and keep learning.",
+ "leanerDashboard.confirmEmailModalBody": "We've sent you an email to verify your account. Please check your inbox and click on the big red button to confirm and keep learning.",
"leanerDashboard.confirmEmailImageAlt": "confirm email background",
"learnerVariantDashboard.menu.dashboard.label": "Painel de controle",
"learnerVariantDashboard.help.label": "Ajuda",
diff --git a/src/i18n/messages/zh_CN.json b/src/i18n/messages/zh_CN.json
index d552a212..8ef84194 100644
--- a/src/i18n/messages/zh_CN.json
+++ b/src/i18n/messages/zh_CN.json
@@ -12,7 +12,7 @@
"leanerDashboard.confirmEmailTextReminderBanner": "Remember to confirm your email so that you can keep learning on edX! {confirmNowButton}.",
"leanerDashboard.verifiedConfirmEmailButton": "I've confirmed my email",
"leanerDashboard.confirmEmailModalHeader": "Confirm your email",
- "leanerDashboard.confirmEmailModalBody": "We've sent you an email to verify your acccount. Please check your inbox and click on the big red button to confirm and keep learning.",
+ "leanerDashboard.confirmEmailModalBody": "We've sent you an email to verify your account. Please check your inbox and click on the big red button to confirm and keep learning.",
"leanerDashboard.confirmEmailImageAlt": "confirm email background",
"learnerVariantDashboard.menu.dashboard.label": "Dashboard",
"learnerVariantDashboard.help.label": "Help",
diff --git a/src/widgets/ProductRecommendations/index.test.jsx b/src/widgets/ProductRecommendations/index.test.jsx
index 28f537ed..ab343b98 100644
--- a/src/widgets/ProductRecommendations/index.test.jsx
+++ b/src/widgets/ProductRecommendations/index.test.jsx
@@ -31,7 +31,7 @@ describe('ProductRecommendations', () => {
hasFailed: false,
};
- const successfullLoadValues = {
+ const successfulLoadValues = {
...defaultValues,
isLoaded: true,
productRecommendations: mockCrossProductResponse,
@@ -42,7 +42,7 @@ describe('ProductRecommendations', () => {
it('matches snapshot', () => {
hooks.useIsMobile.mockReturnValueOnce(false);
hooks.useProductRecommendationsData.mockReturnValueOnce({
- ...successfullLoadValues,
+ ...successfulLoadValues,
});
expect(shallow(
).snapshot).toMatchSnapshot();
@@ -73,7 +73,7 @@ describe('ProductRecommendations', () => {
it('renders nothing if the user is on the mobile view', () => {
hooks.useIsMobile.mockReturnValueOnce(true);
hooks.useProductRecommendationsData.mockReturnValueOnce({
- ...successfullLoadValues,
+ ...successfulLoadValues,
});
const wrapper = shallow(
);
@@ -84,7 +84,7 @@ describe('ProductRecommendations', () => {
it('renders NoCoursesView if the request is loaded, user has courses, and the response is empty', () => {
hooks.useIsMobile.mockReturnValueOnce(false);
hooks.useProductRecommendationsData.mockReturnValueOnce({
- ...successfullLoadValues,
+ ...successfulLoadValues,
productRecommendations: {
amplitudeCourses: [],
crossProductCourses: [],
@@ -100,7 +100,7 @@ describe('ProductRecommendations', () => {
it('renders with cross product data if the request completed and the user has courses', () => {
hooks.useIsMobile.mockReturnValueOnce(false);
hooks.useProductRecommendationsData.mockReturnValueOnce({
- ...successfullLoadValues,
+ ...successfulLoadValues,
});
expect({ ...shallow(
).shallowWrapper, children: expect.any(Array) }).toMatchObject(
@@ -116,7 +116,7 @@ describe('ProductRecommendations', () => {
it('renders the LoadedView with Amplitude course data if the request completed', () => {
hooks.useIsMobile.mockReturnValueOnce(false);
hooks.useProductRecommendationsData.mockReturnValueOnce({
- ...successfullLoadValues,
+ ...successfulLoadValues,
productRecommendations: mockAmplitudeResponse,
});