Skip to content

Commit

Permalink
chore: bust nx cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ixahmedxi committed Jun 5, 2023
1 parent 0b370fd commit 18d78fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/ui/src/typography/typography.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ describe('typography component', () => {
it('should render the component', () => {
render(<Typography />);

expect(screen.getByText(/ui button/i)).toBeInTheDocument();
expect(screen.getByText(/button/i)).toBeInTheDocument();
});
});
2 changes: 1 addition & 1 deletion packages/ui/src/typography/typography.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const Typography = () => {
return <p className="text-crimson-11 dark:text-red-10">UI Button</p>;
return <p className="text-crimson-11 dark:text-red-10">Button</p>;
};

0 comments on commit 18d78fc

Please sign in to comment.