diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-25 15:27:58 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-25 15:27:58 +0530 |
commit | 35a44621c25b06471ae5b29bbdfb35fdcf652cf1 (patch) | |
tree | 377186f820685e9be05d60f0d7a2d8743a8b6a9c /src/components/Pages | |
parent | 5d2222d9fa782b94ba6787e5c6b23aab1e468308 (diff) |
Changed the way all the values are calculated for stability
Diffstat (limited to 'src/components/Pages')
-rw-r--r-- | src/components/Pages/BillingPage.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/Pages/BillingPage.tsx b/src/components/Pages/BillingPage.tsx index 9697a24..ebc0f5a 100644 --- a/src/components/Pages/BillingPage.tsx +++ b/src/components/Pages/BillingPage.tsx @@ -20,7 +20,7 @@ import DocumentInfoForm from "./../Form/Document/DocumentInfoForm"; import MetaInfoForm from "./../Form/Document/MetaInfoForm"; import ItemsDisplay from "./../Display/ItemsDisplay"; -import SummaryDisplay from "./../Display/SummaryDisplay"; +// import SummaryDisplay from "./../Display/SummaryDisplay"; const BillingPage: React.FC = () => { const [savedItems, getSavedItems] = useState<Item[]>([]); @@ -87,10 +87,11 @@ const BillingPage: React.FC = () => { <div className={"BillingPageFlex"}> <MetaInfoForm/> - <SummaryDisplay items={items}/> </div> </> ); + // this goes after metainfoform + // <SummaryDisplay items={items}/> } export default BillingPage; |