Skip to content

Commit

Permalink
MAT-7796: Address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Dec 17, 2024
1 parent e9b06b7 commit f73e4eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/CqlBuilderPanel/functionsSection/FunctionsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export interface FunctionProps {
isCQLUnchanged: boolean;
functions?: FunctionLookup[];
resetCql?: Function;
cqlBuilderLookupTypes?: any;
}

const getArgumentNames = (logic: string) => {
Expand Down
4 changes: 2 additions & 2 deletions src/CqlBuilderPanel/functionsSection/functions/Functions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState, useEffect, useMemo, useCallback } from "react";
import _ from "lodash";
import tw from "twin.macro";
import "styled-components/macro";
import { FunctionLookup, Lookup } from "../../../model/CqlBuilderLookup";
import { FunctionLookup } from "../../../model/CqlBuilderLookup";
import { FunctionProps } from "../FunctionsSection";
import {
ColumnDef,
Expand Down Expand Up @@ -80,7 +80,7 @@ const Functions = ({
const [editFunctionDialogOpen, setEditFunctionDialogOpen] =
useState<boolean>();
const [deleteDialogOpen, setDeleteDialogOpen] = useState<boolean>(false);
const [selectedFunction, setSelectedFunction] = useState<Lookup>();
const [selectedFunction, setSelectedFunction] = useState<FunctionLookup>();
const handleFunctionEdit = () => {};
// table data
const data = visibleFunctions;
Expand Down

0 comments on commit f73e4eb

Please sign in to comment.