Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
craigrbarnes committed Aug 21, 2024
1 parent 4e8a50a commit a846456
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const GuppyDropdownMenuItem = ({
Modal403 = Modals.NoAccessModal,
Modal400 = Modals.GeneralErrorModal,
done,
setIsActive = (_: boolean) => null,
setIsActive = () => null,
customErrorMessage,
hideNotification = false,
actionFunction,
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/features/Discovery/DiscoveryTable.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useMemo } from 'react';
import React from 'react';
import {
MantineReactTable,
MRT_Cell,
Expand Down Expand Up @@ -145,7 +145,7 @@ const DiscoveryTable = ({
},
},
mantineTableBodyRowProps: ({ row }) => ({
onClick: (event) => {
onClick: () => {
setStudyDetails(() => {
return { ...row.original };
});
Expand Down
2 changes: 1 addition & 1 deletion packages/sampleCommons/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Gen3App.getInitialProps = async (
]),
);

const icons = await ContentSource.get(`config/icons/gen3.json`);
const icons = await ContentSource.get('config/icons/gen3.json');
return {
...ctx,
modalsConfig: modals,
Expand Down

0 comments on commit a846456

Please sign in to comment.