We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 297db3f + 069a3de commit 604a920Copy full SHA for 604a920
packages/website/src/components/ApplyForm.js
@@ -75,18 +75,21 @@ function ApplyForm() {
75
if (state.status === 'succeed' && state.message) {
76
return (
77
<Card className="uil-m-auto uil-ta-center apply-form">
78
- <Heading1 className="apply-text">Thank you!</Heading1>
79
- <br />
80
-
81
{state.message.startsWith('Your DocSearch') ? (
+ <>
+ <Heading1 className="apply-text">URL Already Submitted!</Heading1>
+ <br />
82
<Text
83
className="uil-pv-8 uil-d-block apply-text"
84
aria-label="Request has already been processed"
85
>
86
{state.message}
87
</Text>
88
+ </>
89
) : (
90
<>
91
+ <Heading1 className="apply-text">Thank You!</Heading1>
92
93
94
95
aria-label="Request will be processed"
0 commit comments