Remove Activity Feed from create page per Stephen

This commit is contained in:
jahooma 2022-01-11 21:59:44 -06:00
parent 19c0f83b85
commit 2f88a5cdab

View File

@ -13,7 +13,6 @@ import { AdvancedPanel } from '../components/advanced-panel'
import { createContract } from '../lib/firebase/api-call' import { createContract } from '../lib/firebase/api-call'
import { Row } from '../components/layout/row' import { Row } from '../components/layout/row'
import { AmountInput } from '../components/amount-input' import { AmountInput } from '../components/amount-input'
import { ActivityFeed } from './activity'
// Allow user to create a new contract // Allow user to create a new contract
export default function NewContract() { export default function NewContract() {
@ -209,10 +208,6 @@ export default function NewContract() {
</div> </div>
</form> </form>
</div> </div>
<Spacer h={6} />
<ActivityFeed contracts={[]} recentComments={[]} />
</Page> </Page>
) )
} }