(description: string)
| 25 | hasProcessedRef.current = true; |
| 26 | |
| 27 | const notifyError = (description: string) => |
| 28 | void toast({ |
| 29 | title: "OAuth Authorization Error", |
| 30 | description, |
| 31 | variant: "destructive", |
| 32 | }); |
| 33 | |
| 34 | const params = parseOAuthCallbackParams(window.location.search); |
| 35 | if (!params.successful) { |
no test coverage detected