mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-26 03:47:01 -05:00
Clean
This commit is contained in:
@@ -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) => {
|
||||
|
||||
@@ -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/>
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user