Skip to content

Commit a19db3b

Browse files
committed
Clean
1 parent 2c8d8d9 commit a19db3b

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

web/components/votes/vote-info.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function VoteComponent() {
3131
console.debug('votes', votes)
3232

3333
return (
34-
<Col className="mx-4">
34+
<Col className="mx-2">
3535
<Title className="!mb-2 text-3xl">Proposals</Title>
3636
{votes && votes.length > 0 && <Col className={'mt-4'}>
3737
{votes.map((vote: Vote) => {

web/pages/vote.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {LovePage} from 'web/components/love-page'
22
import {Col} from 'web/components/layout/col'
33
import {SEO} from 'web/components/SEO'
44
import {useUser} from 'web/hooks/use-user'
5-
import {BackButton} from 'web/components/back-button'
65
import {CompassLoadingIndicator} from "web/components/widgets/loading-indicator";
76
import {VoteComponent} from "web/components/votes/vote-info";
87

@@ -22,8 +21,6 @@ export default function VotePage() {
2221
description={'A place to vote on decisions'}
2322
url={`/vote`}
2423
/>
25-
<BackButton className="-ml-2 mb-2 self-start"/>
26-
2724
{user === undefined ? (
2825
<CompassLoadingIndicator/>
2926
) : (

0 commit comments

Comments
 (0)