mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-05-11 20:30:07 +02:00
fix parentheses (#2486)
This commit is contained in:
parent
7d1ec1095c
commit
d3dfabb20e
@ -39,16 +39,16 @@ const NavigationRow = ({
|
||||
return (
|
||||
<div className="mt-4 w-full grid grid-cols-3">
|
||||
<div>
|
||||
{(formStep > 0 && !noCredentials) ||
|
||||
(formStep > 1 && !noAdvanced && (
|
||||
<SquareNavigationButton
|
||||
className="border border-text-400 mr-auto p-2.5"
|
||||
onClick={prevFormStep}
|
||||
>
|
||||
<ArrowLeft />
|
||||
Previous
|
||||
</SquareNavigationButton>
|
||||
))}
|
||||
{((formStep > 0 && !noCredentials) ||
|
||||
(formStep > 1 && !noAdvanced)) && (
|
||||
<SquareNavigationButton
|
||||
className="border border-text-400 mr-auto p-2.5"
|
||||
onClick={prevFormStep}
|
||||
>
|
||||
<ArrowLeft />
|
||||
Previous
|
||||
</SquareNavigationButton>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="flex justify-center">
|
||||
|
Loading…
x
Reference in New Issue
Block a user