Skip to content

Commit

Permalink
💚 Fix build
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
naelob committed Nov 30, 2023
1 parent 091df4f commit d373353
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import React, { useState } from 'react';
import { useState } from 'react';

const CopyLinkInput = () => {
const [value, setValue] = useState('https://magic-link/edfr-12h3KKHjdd-1.com');
const [value,] = useState('https://magic-link/edfr-12h3KKHjdd-1.com');
const [copied, setCopied] = useState(false);

const handleCopy = async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/src/components/jobs/JobsTable.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { columns } from "./components/columns"
import { DataTable } from "../shared/data-table"
import { useEffect, useState } from "react"
import { JOBS } from "./data/JOBS";
import {JOBS} from "./data/jobsConst";

export interface Job {
method: string;
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/src/components/jobs/components/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { Badge } from "@/components/ui/badge"
import { Checkbox } from "@/components/ui/checkbox"

import { labels, labels2, priorities, statuses } from "../../configuration/data/data"
import { Job } from "../../configuration/data/schema"
import { DataTableColumnHeader } from "../../shared/data-table-column-header"
import { DataTableRowActions } from "../../shared/data-table-row-actions"
import { Job } from "../data/schema"

export const columns: ColumnDef<Job>[] = [
{
Expand Down

0 comments on commit d373353

Please sign in to comment.