diff --git a/frontend/src/metabase/components/DriverWarning/DriverWarning.stories.tsx b/frontend/src/metabase/components/DriverWarning/DriverWarning.stories.tsx index 679c3f39067bf15be9c7434aef7b4db10bde23b2..3726460a82335b1c98c4a2313c97b774c42528b6 100644 --- a/frontend/src/metabase/components/DriverWarning/DriverWarning.stories.tsx +++ b/frontend/src/metabase/components/DriverWarning/DriverWarning.stories.tsx @@ -38,7 +38,7 @@ Template.args = { source: { type: "partner", contact: { - name: "Parners Incorporated", + name: "Partners Incorporated", address: "https://example.com/contact", }, }, diff --git a/frontend/src/metabase/components/DriverWarning/DriverWarning.unit.spec.tsx b/frontend/src/metabase/components/DriverWarning/DriverWarning.unit.spec.tsx index d5dedab4b2b07ee03d841359e9f05fa84ba4539f..58fd55d4c3673416f5a161b0b64028e156eda5cc 100644 --- a/frontend/src/metabase/components/DriverWarning/DriverWarning.unit.spec.tsx +++ b/frontend/src/metabase/components/DriverWarning/DriverWarning.unit.spec.tsx @@ -33,7 +33,7 @@ describe("DriverWarning", () => { source: { type: "partner", contact: { - name: "Parners Incorporated", + name: "Partners Incorporated", address: "https://example.com/contact", }, }, @@ -49,7 +49,7 @@ describe("DriverWarning", () => { source: { type: "partner", contact: { - name: "Parners Incorporated Two", + name: "Partners Incorporated Two", }, }, }), @@ -58,7 +58,7 @@ describe("DriverWarning", () => { source: { type: "partner", contact: { - name: "Parners Incorporated Three", + name: "Partners Incorporated Three", address: "contactus@example.com", }, }, @@ -146,6 +146,6 @@ describe("DriverWarning", () => { ); expect(container.querySelector("a")).toBeNull(); screen.getByText(/partner-developed driver/); - screen.getByText(/Parners Incorporated Two/); + screen.getByText(/Partners Incorporated Two/); }); });