Skip to content

Commit

Permalink
Merge pull request #121 from jonogon/main
Browse files Browse the repository at this point in the history
Remove submit dabi from activity page
  • Loading branch information
imas234 authored Sep 28, 2024
2 parents 5aaaf6c + fce3058 commit 81107eb
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions apps/jonogon-web-next/src/app/activity-log/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@ import {PropsWithChildren, useEffect} from 'react';
import {useRouter, useSearchParams, usePathname} from 'next/navigation';
import {cn} from '@/lib/utils';
import Link from 'next/link';
import PetitionActionButton from '@/components/custom/PetitionActionButton';
import {trpc} from '@/trpc/client';
import { z } from 'zod';
import { Card, CardContent } from '@/components/ui/card';
import { Card } from '@/components/ui/card';
import { Pagination, PaginationContent, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from '@/components/ui/pagination';
import page from '../page';
import { useAuthState } from '@/auth/token-manager';

const ACTIVITY_TYPES = [
Expand Down Expand Up @@ -254,14 +252,6 @@ export default function ActivityLog() {
)
:null
}
<div className="fixed bottom-0 left-0 w-full bg-background/50">
<div
className={
'max-w-screen-sm w-full mx-auto flex flex-col py-4 px-8'
}>
<PetitionActionButton />
</div>
</div>
</>
);
}

0 comments on commit 81107eb

Please sign in to comment.