Skip to content

Commit 6255c31

Browse files
committed
Fixed search button
1 parent 7106cf6 commit 6255c31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/src/components/Home.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export const Home: React.FC = () => {
212212
/>
213213
</InputFlexContainer>
214214

215-
{isFetchingResults ? (
215+
{isFetchingResults ? null : (
216216
<SearchButtonWrapper
217217
onClick={async () => {
218218
if (sourcePageTitle.trim().length === 0) {
@@ -227,7 +227,7 @@ export const Home: React.FC = () => {
227227
>
228228
Go!
229229
</SearchButtonWrapper>
230-
) : null}
230+
)}
231231

232232
{errorMessage !== null ? (
233233
<ErrorMessage text={errorMessage} />

0 commit comments

Comments
 (0)