Files
adastra_app/src/app/article/[slug]/_components/commentCard/functions.ts
T
2025-08-07 08:12:11 +02:00

6 lines
203 B
TypeScript

import { User } from "@/utils/types/models";
export const showDeleteCommentButton = (commentAuthorUsername: string, currentUser?: User) => {
return commentAuthorUsername === currentUser?.username;
};