Skip to content

Commit

Permalink
fix: add re-request button in alby auth screen (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
im-adithya authored Sep 20, 2024
1 parent db65895 commit d5c2ec3
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion frontend/src/components/AuthCodeForm.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { RefreshCw } from "lucide-react";
import React, { useState } from "react";
import { useNavigate } from "react-router-dom";
import Container from "src/components/Container";
Expand Down Expand Up @@ -87,7 +88,19 @@ function AuthCodeForm({ url }: AuthCodeFormProps) {
/>
</div>
</div>
<LoadingButton loading={isLoading}>Submit</LoadingButton>
<div className="flex gap-4">
<LoadingButton loading={isLoading} className="flex-1">
Submit
</LoadingButton>
<Button
type="button"
size="icon"
variant="outline"
onClick={() => url && openLink(url)}
>
<RefreshCw className="w-4 h-4" />
</Button>
</div>
</>
)}
</div>
Expand Down

0 comments on commit d5c2ec3

Please sign in to comment.