We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bdb0e3e + 12b2fc1 commit d2aa5cfCopy full SHA for d2aa5cf
src/components/ticker/SignalGroupCard.tsx
@@ -50,16 +50,17 @@ const SignalGroupCard: FC<Props> = ({ ticker }) => {
50
onSuccess: () => {
51
queryClient.invalidateQueries({ queryKey: ['ticker', ticker.id] })
52
createNotification({ content: 'Signal Group enabled successfully', severity: 'success' })
53
+ setSubmittingAdd(false)
54
},
55
onError: () => {
56
createNotification({ content: 'Failed to configure Signal group', severity: 'error' })
57
58
59
onFailure: error => {
60
createNotification({ content: error as string, severity: 'error' })
61
62
63
})
-
- setSubmittingAdd(false)
64
}
65
66
const handleToggle = () => {
0 commit comments