Skip to content

Commit a574703

Browse files
committed
Fix props name
1 parent fda52fe commit a574703

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/components/votes/vote-info.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ export function VoteComponent() {
103103
)
104104
}
105105

106-
interface BaseBioProps {
106+
interface VoteCreatorProps {
107107
defaultValue?: any
108108
onBlur?: (editor: any) => void
109109
onEditor?: (editor: any) => void
110110
}
111111

112-
export function VoteCreator({defaultValue, onBlur, onEditor}: BaseBioProps) {
112+
export function VoteCreator({defaultValue, onBlur, onEditor}: VoteCreatorProps) {
113113
const editor = useTextEditor({
114114
// extensions: [StarterKit],
115115
max: MAX_DESCRIPTION_LENGTH,

0 commit comments

Comments
 (0)