@@ -16,15 +16,7 @@ import {
1616} from "../../../reducers/argit"
1717import { openCreateRepoModal } from "../../../reducers/app"
1818import { txQuery , getAllActivities } from "../../../../utils"
19- import {
20- Row ,
21- Col ,
22- Progress ,
23- Card ,
24- CardBody ,
25- CardTitle ,
26- CardText
27- } from "reactstrap"
19+ import { Row , Col , Progress , Card , CardBody , CardTitle , div } from "reactstrap"
2820import s from "./DashboardNew.module.scss"
2921import Widget from "../Widget/Widget"
3022import AnimateNumber from "react-animated-number"
@@ -72,7 +64,7 @@ export const DashboardNew = connector(
7264
7365 const activities = await getAllActivities ( arweave , address )
7466 actions . loadActivities ( { activities } )
75-
67+ console . log ( activities )
7668 const txids = await arweave . arql ( txQuery ( address , "create-repo" ) )
7769 let notifications : Notification [ ] = [ ]
7870 let completed_txids : String [ ] = [ ]
@@ -138,7 +130,6 @@ export const DashboardNew = connector(
138130 }
139131 } )
140132) ( function DashboardNew ( props ) {
141- console . log ( props . repositories )
142133 return (
143134 < div className = { s . root } >
144135 < h1 className = "page-title" >
@@ -177,7 +168,7 @@ export const DashboardNew = connector(
177168 : "Repo Updated" }
178169 </ span >
179170 </ CardTitle >
180- < CardText >
171+ < div >
181172 < Link
182173 to = { `/app/main/repository/${
183174 props . address
@@ -196,7 +187,7 @@ export const DashboardNew = connector(
196187 ? activity . value
197188 : `Updated ref ${ activity . key } => ${ activity . value } ` }
198189 </ div >
199- </ CardText >
190+ </ div >
200191 </ CardBody >
201192 </ div >
202193 </ div >
0 commit comments