mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-04-04 09:58:32 +02:00
Fix frontend typing rebase issue
This commit is contained in:
parent
9599388db8
commit
67a4eb6f6f
@ -67,7 +67,7 @@ export const UserEditor = ({
|
||||
})}
|
||||
onSelect={(option) => {
|
||||
setSelectedUserIds([
|
||||
...Array.from(new Set([...selectedUserIds, option.value])),
|
||||
...Array.from(new Set([...selectedUserIds, option.value as string])),
|
||||
]);
|
||||
}}
|
||||
itemComponent={({ option }) => (
|
||||
|
@ -91,7 +91,7 @@ export const AddConnectorForm: React.FC<AddConnectorFormProps> = ({
|
||||
onSelect={(option) => {
|
||||
setSelectedCCPairIds([
|
||||
...Array.from(
|
||||
new Set([...selectedCCPairIds, parseInt(option.value)])
|
||||
new Set([...selectedCCPairIds, parseInt(option.value as string)])
|
||||
),
|
||||
]);
|
||||
}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user