Skip to content

Commit

Permalink
cleanup more
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Dec 28, 2024
1 parent c1bd85d commit 16d1bb8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 16 deletions.
1 change: 0 additions & 1 deletion app/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { Suspense } from "react";
import { RelayEnvironmentProvider } from "react-relay";
import { ThemeProvider as EmotionThemeProvider } from "@emotion/react";

import { Provider } from "@arizeai/components";

Expand Down
16 changes: 3 additions & 13 deletions app/src/components/annotation/AnnotationTooltip.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
import React, { CSSProperties, ReactNode } from "react";

import {
HelpTooltip,
Text,
TooltipTrigger,
TriggerWrap,
} from "@arizeai/components";
import { HelpTooltip, TooltipTrigger, TriggerWrap } from "@arizeai/components";

import { Flex, View } from "@phoenix/components";
import { Flex, Text, View } from "@phoenix/components";
import { floatFormatter } from "@phoenix/utils/numberFormatUtils";

import { Annotation } from "./types";
Expand Down Expand Up @@ -37,12 +32,7 @@ export function AnnotationTooltip({
alignItems="center"
>
<View>
<Text
weight="heavy"
color="inherit"
textSize="large"
elementType="h3"
>
<Text weight="heavy" color="inherit" size="L" elementType="h3">
{annotation.name}
</Text>
<View paddingTop="size-50" minWidth="150px">
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/nav/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { ReactNode, useState } from "react";
import { Link, NavLink as RRNavLink } from "react-router-dom";
import { css, Theme } from "@emotion/react";
import { css } from "@emotion/react";

import { Icon, Icons, Text } from "@phoenix/components";
import { useTheme } from "@phoenix/contexts";
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/table/styles.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CSSProperties } from "react";
import { Column } from "@tanstack/react-table";
import { css, Theme } from "@emotion/react";
import { css } from "@emotion/react";

export const tableCSS = css`
font-size: var(--ac-global-font-size-s);
Expand Down

0 comments on commit 16d1bb8

Please sign in to comment.