Skip to content

Commit

Permalink
Update DetailedLogs.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Manwe-777 committed Jan 19, 2024
1 parent d04c7cf commit 1da27f2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/components/popups/DetailedLogs.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useState } from "react";

import { ReactComponent as Close } from "../../assets/images/svg/close.svg";
import Button from "../ui/Button";

interface DetailedLogsProps {
onClose: () => void;
Expand Down Expand Up @@ -67,17 +68,14 @@ export default function DetailedLogs(props: DetailedLogsProps) {
width: "100%",
}}
>
<div
<Button
style={{
height: "36px",
width: "120px",
width: "140px",
margin: "auto",
}}
className="button-simple"
text={page === 0 ? "Next" : "Previous"}
onClick={() => setPage(page === 0 ? 1 : 0)}
>
{page === 0 ? "Next" : "Previous"}
</div>
/>
</div>
</div>
</>
Expand Down

0 comments on commit 1da27f2

Please sign in to comment.