Skip to content

Commit

Permalink
feat: remove Modal
Browse files Browse the repository at this point in the history
  • Loading branch information
ttitoo committed Mar 30, 2023
1 parent 448ed1c commit fac7d40
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
8 changes: 0 additions & 8 deletions src/app/columns/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import {
__,
} from "ramda";
import Table from "@/app/components/columns/Table";
import Form from "@/app/components/columns/Form";
import { ColumnDetail } from "@/app/utils/interfaces";
import styles from "./page.module.css";
import FloatingMenu from "@/app/components/FloatMenu";
Expand Down Expand Up @@ -164,13 +163,6 @@ const Columns = () => {
</div>
</div>
</div>
<Form
table={selectedTable}
column={selectedColumn}
record={editing}
create={create}
close={() => setEditing(undefined)}
/>
<FloatingMenu handleClick={add} />
</div>
);
Expand Down
2 changes: 0 additions & 2 deletions src/app/samples/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import React, { useEffect, useState } from "react";
import { ColumnSample } from "@/app/utils/interfaces";
import Table from "./Table";
import Form from "./Form";
import FloatingMenu from "@/app/components/FloatMenu";
import { compose, flip, append, tap } from "ramda";

Expand Down Expand Up @@ -39,7 +38,6 @@ const Page = () => {
<div className="p-5 bg-white">
<Table payloads={payloads} evaluate={console.info} />
</div>
<Form show={visible} close={close} create={create} />
<FloatingMenu handleClick={show} />
</div>
);
Expand Down

1 comment on commit fac7d40

@vercel
Copy link

@vercel vercel bot commented on fac7d40 Mar 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.