Skip to content

Commit

Permalink
Code review
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyEJohnson committed Sep 19, 2024
1 parent 36dd3b7 commit 81cf5d9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/app/pages/adopters/adopters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ type Data = {
};

function Adopters({data}: {data: Data[]}) {
console.info('**** DATA', data.slice(0, 10));
return (
<main className="adopters-page text-content">
<h1>Complete list of institutions that have adopted OpenStax</h1>
Expand Down
4 changes: 1 addition & 3 deletions test/helpers/mock-lazyload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import React from 'react';
jest.mock('react-lazyload', () => ({
__esModule: true,
default: ({children}: React.PropsWithChildren<object>) => {
return (
<div>{children}</div>
);
return children;
}
}));

0 comments on commit 81cf5d9

Please sign in to comment.