small fix

This commit is contained in:
daniel31x13 2024-06-26 14:07:24 -04:00
parent 3618ba907d
commit 8082efdc67
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import {
LinkIncludingShortenedCollectionAndTags,
} from "@/types/global";
import ReadableView from "@/components/ReadableView";
import getServerSideProps from "@/lib/client/getServerSideProps";
export default function Index() {
const { links, getLink } = useLinkStore();
@ -65,3 +66,5 @@ export default function Index() {
</div>
);
}
export { getServerSideProps };

View File

@ -6,6 +6,7 @@ import {
LinkIncludingShortenedCollectionAndTags,
} from "@/types/global";
import ReadableView from "@/components/ReadableView";
import getServerSideProps from "@/lib/client/getServerSideProps";
export default function Index() {
const { links, getLink } = useLinkStore();
@ -61,3 +62,5 @@ export default function Index() {
</div>
);
}
export { getServerSideProps };