Fixes props type in the Placeholder.tsx

This commit is contained in:
kvakazyambra 2024-05-10 20:14:51 +03:00
parent be7e31dbd2
commit 9542fd0209

View File

@ -6,7 +6,7 @@ import { useSession } from '../../../context/session'
import styles from './Placeholder.module.scss'
export type PlaceholderProps = {
type: 'feed' | 'feedCollaborations' | 'feedDiscussions'
type: string
}
export const Placeholder = (props: PlaceholderProps) => {