Skip to content

Commit

Permalink
Address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
jaen committed May 22, 2024
1 parent bc4c83b commit 11e39cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type MasterSliceLibraryPreviewModalProps = {
onClose: () => void;
};

export const MasterSliceLibraryPreviewModal: React.FunctionComponent<
export const MasterSliceLibraryPreviewModal: React.FC<
MasterSliceLibraryPreviewModalProps
> = ({ isOpen, onClose }) => {
const { masterSliceLibrary } = useMarketingContent();
Expand Down
2 changes: 1 addition & 1 deletion playwright/tests/common/sideNav.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ test('I can open a modal describing Master Slice Libraries by clicking the "Mast
await expect(sliceMachinePage.menu.masterSliceLibraryButton).toBeVisible();

const modal = sliceMachinePage.page.getByRole("dialog");
const modalHeader = modal.getByText("Master Slice Library Generator", {
const modalHeader = modal.getByText("Master Slice Library Generator (BETA)", {
exact: true,
});
await sliceMachinePage.menu.masterSliceLibraryButton.click();
Expand Down

0 comments on commit 11e39cb

Please sign in to comment.