Skip to content

Commit

Permalink
fix: page function name
Browse files Browse the repository at this point in the history
  • Loading branch information
1nayu committed May 22, 2024
1 parent 2c1e55c commit 5e824a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/(authenticated)/images/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {Stack, Breadcrumbs, Link, Typography} from "@mui/material";
import CardBackground from "@/components/layout/cardBackground";
import ImageCreator from "@/components/images/imageCreator";

export default function TagCreatePage() {
export default function ImageCreatePage() {

return (
<Stack spacing={1} mx={2} my={3}>
Expand Down
2 changes: 1 addition & 1 deletion app/(authenticated)/images/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import CardBackground from "@/components/layout/cardBackground";
import {imageFactory} from "@/src/models/ImageModel";
import React from "react";

export default async function TagsPage() {
export default async function ImagesPage() {
const images = await imageFactory().index()

return (
Expand Down

0 comments on commit 5e824a7

Please sign in to comment.