Skip to content

Commit deb4ceb

Browse files
committed
fix: rename func for consistency
1 parent 8e48101 commit deb4ceb

File tree

1 file changed

+3
-3
lines changed
  • packages/frontend/src/components/AttachmentSuggestions

1 file changed

+3
-3
lines changed

packages/frontend/src/components/AttachmentSuggestions/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import Suggestions from './components/Suggestions'
2323
import { useAttachmentSelection } from './hooks/useAttachmentSelection'
2424
import { reformatToCheckboxVariables, validateFiles } from './utils'
2525

26-
interface AttachmentMultiCheckboxProps {
26+
interface AttachmentSuggestionsProps {
2727
name: string
2828
label?: string
2929
defaultValue?: string
@@ -32,7 +32,7 @@ interface AttachmentMultiCheckboxProps {
3232
variableTypes?: TDataOutMetadatumType[]
3333
}
3434

35-
function AttachmentMultiCheckbox(props: AttachmentMultiCheckboxProps) {
35+
function AttachmentSuggestions(props: AttachmentSuggestionsProps) {
3636
const {
3737
name,
3838
required,
@@ -245,4 +245,4 @@ function AttachmentMultiCheckbox(props: AttachmentMultiCheckboxProps) {
245245
)
246246
}
247247

248-
export default memo(AttachmentMultiCheckbox)
248+
export default memo(AttachmentSuggestions)

0 commit comments

Comments
 (0)