Skip to content

Commit

Permalink
fix: add missing interface
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanoshadjipetrou committed Mar 17, 2023
1 parent 7ea580f commit 3daa563
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/app/modules/grant-detail-module/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
import React from "react";
import { v4 } from "uuid";
import get from "lodash/get";
import find from "lodash/find";
import { appColors } from "app/theme";
import { useRecoilState } from "recoil";
import { useMediaQuery } from "@material-ui/core";
import { useTitle, useUpdateEffect } from "react-use";
import { Switch, Route, useParams, useLocation } from "react-router-dom";
import { useStoreActions, useStoreState } from "app/state/store/hooks";
import { Switch, Route, useParams, useLocation } from "react-router-dom";
/* project */
import { breadCrumbItems } from "app/state/recoil/atoms";
import { PageHeader } from "app/components/PageHeader";
Expand All @@ -28,9 +29,12 @@ import { GrantDetailInvestmentsTableWrapper } from "app/modules/viz-module/sub-m
import { GrantDetailGenericBudgetsTimeCycleWrapper } from "app/modules/viz-module/sub-modules/budgets/time-cycle/data-wrappers/grantDetail";
import { GrantDetailInvestmentsDisbursedWrapper } from "app/modules/viz-module/sub-modules/investments/disbursed/data-wrappers/grantDetail";
import { GrantDetailInvestmentsTimeCycleWrapper } from "app/modules/viz-module/sub-modules/investments/time-cycle/data-wrappers/grantDetail";
import find from "lodash/find";

import { GrantDetailPeriod } from "./components/InfoContent";
interface GrantDetailPeriod {
number: number;
endDate: string;
startDate: string;
}

export default function GrantDetail() {
useTitle("The Data Explorer - Grant");
Expand Down

0 comments on commit 3daa563

Please sign in to comment.