Skip to content

Commit b3b3ce4

Browse files
committed
commented out line to send current grant
1 parent 25db0d9 commit b3b3ce4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

frontend/src/main-page/grants/grant-list/GrantItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ const GrantItem: React.FC<GrantItemProps> = ({ grant, defaultExpanded = false })
631631
<div className="hidden-features">
632632
{showNewGrantModal && (
633633
<NewGrantModal
634-
grant={curGrant}
634+
//grant={curGrant}
635635
onClose={() => setShowNewGrantModal(false)}
636636
/>
637637
)}

frontend/src/main-page/grants/new-grant/NewGrantModal.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ const NewGrantModal: React.FC<{ onClose: () => void }> = ({ onClose }) => {
4848
// Used
4949
const [organization, _setOrganization] = useState<string>("");
5050

51-
52-
5351
// Used
5452
const [applicationDate, _setApplicationDate] = useState<string>("");
5553
// Used

0 commit comments

Comments
 (0)