This commit is contained in:
MartinBraquet
2025-10-18 00:20:32 +02:00
parent 2c8d8d9989
commit a19db3bca9
2 changed files with 1 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ export function VoteComponent() {
console.debug('votes', votes)
return (
<Col className="mx-4">
<Col className="mx-2">
<Title className="!mb-2 text-3xl">Proposals</Title>
{votes && votes.length > 0 && <Col className={'mt-4'}>
{votes.map((vote: Vote) => {

View File

@@ -2,7 +2,6 @@ import {LovePage} from 'web/components/love-page'
import {Col} from 'web/components/layout/col'
import {SEO} from 'web/components/SEO'
import {useUser} from 'web/hooks/use-user'
import {BackButton} from 'web/components/back-button'
import {CompassLoadingIndicator} from "web/components/widgets/loading-indicator";
import {VoteComponent} from "web/components/votes/vote-info";
@@ -22,8 +21,6 @@ export default function VotePage() {
description={'A place to vote on decisions'}
url={`/vote`}
/>
<BackButton className="-ml-2 mb-2 self-start"/>
{user === undefined ? (
<CompassLoadingIndicator/>
) : (