Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Update Share my Passport button action #199

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/passport/share-my-passport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const ShareMyPassport: React.FunctionComponent = () => {
const methods = useForm<FormValues>();
const { handleSubmit } = methods;
const onSubmit = async (): Promise<void> => {
push(`/passport`);
push(`/passport/manage-permissions`);
};
const barriers: Checkbox[] = [
{
Expand Down Expand Up @@ -133,7 +133,7 @@ const ShareMyPassport: React.FunctionComponent = () => {
}}
>
<Button
type="button" // changing it for now as we want to stay on the page for the prototype
type="submit"
color="blue"
mode="solid"
data-h2-font-style="b(underline)"
Expand Down