Skip to content

Commit

Permalink
rename footer and temp remove back button
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-belcher committed Nov 28, 2023
1 parent 94b52b0 commit de40297
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const PraDisclosure = () => {
export const Footer = () => {
return (
<div className="flex flex-col gap-2 my-6 text-sm text-slate-500">
<b>{"PRA Disclosure Statement"}</b>
Expand Down
6 changes: 3 additions & 3 deletions src/services/ui/src/pages/form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ABP1 } from "./proto";
import { documentInitializer, documentValidator } from "@/components/RHF/utils";
import { Link, useParams } from "react-router-dom";
import { SubNavHeader } from "@/components";
import { PraDisclosure } from "./praDisclosure";
import { Footer } from "./footer";

export const Webforms = () => {
return (
Expand Down Expand Up @@ -114,13 +114,13 @@ export function Webform() {
<div className="flex justify-between">
<Button variant="link">Save Draft</Button>
<div className="flex flex-row gap-4">
<Button variant="outline">Back</Button>
{/* <Button variant="outline">Back</Button> */}
<Button type="submit">Submit</Button>
</div>
</div>
</form>
</Form>
<PraDisclosure />
<Footer />
</div>
);
}
Expand Down

0 comments on commit de40297

Please sign in to comment.