undo commit

This commit is contained in:
daniel31x13
2024-11-03 03:25:01 -05:00
parent aeafe6e15d
commit 9103f67db5
176 changed files with 9406 additions and 2367 deletions
+5 -10
View File
@@ -4,7 +4,6 @@ import {
} from "@/types/global";
import Link from "next/link";
import { useRouter } from "next/router";
import { useGetLink } from "@/hooks/store/links";
type Props = {
name: string;
@@ -21,8 +20,6 @@ export default function PreservedFormatRow({
link,
downloadable,
}: Props) {
const getLink = useGetLink();
const router = useRouter();
let isPublic = router.pathname.startsWith("/public") ? true : undefined;
@@ -52,11 +49,9 @@ export default function PreservedFormatRow({
};
return (
<div className="flex justify-between items-center pr-1 border border-neutral-content rounded-md">
<div className="flex justify-between items-center">
<div className="flex gap-2 items-center">
<div className="bg-primary text-primary-content p-2 rounded-l-md">
<i className={`${icon} text-2xl`} />
</div>
<i className={`${icon} text-2xl text-primary`} />
<p>{name}</p>
</div>
@@ -64,7 +59,7 @@ export default function PreservedFormatRow({
{downloadable || false ? (
<div
onClick={() => handleDownload()}
className="btn btn-sm btn-square"
className="btn btn-sm btn-square btn-ghost"
>
<i className="bi-cloud-arrow-down text-xl text-neutral" />
</div>
@@ -75,9 +70,9 @@ export default function PreservedFormatRow({
isPublic ? "/public" : ""
}/preserved/${link?.id}?format=${format}`}
target="_blank"
className="btn btn-sm btn-square"
className="btn btn-sm btn-square btn-ghost"
>
<i className="bi-box-arrow-up-right text-xl text-neutral" />
<i className="bi-box-arrow-up-right text-lg text-neutral" />
</Link>
</div>
</div>