Skip to content

Commit

Permalink
fix: fixed a couple of TS warning emitted during builds
Browse files Browse the repository at this point in the history
  • Loading branch information
seanrcollings committed Feb 5, 2025
1 parent 7d479a0 commit aac5091
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ import { IconButton } from "@components/Buttons/IconButton";
import { ButtonVariants, ButtonProps } from "@components/Buttons/Button";
import { PageProps, PageState } from "../Pagination.types";
import { ButtonContext } from "@components/Buttons/Button/Button.context";
import { PaginationStateContext } from "./Pagination.context";
import {
PaginationStateContext,
PaginationContext,
} from "./Pagination.context";
import { Button } from "@components/Buttons/Button";
import { IconButtonProps } from "../../Buttons/IconButton";
import { CustomSelectProps } from "../../Dropdowns/CustomSelect";
import { CustomSelect } from "@components/Dropdowns/CustomSelect";
import { useContextProps } from "@hooks/useContextProps";
import { PaginationContext } from ".";

interface PaginationRenderProps {
page: number;
Expand Down
3 changes: 1 addition & 2 deletions packages/atomic-elements/src/styles/typography.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ export interface TypographyProps {
| "capitalize"
| "none"
| "full-width"
| "full-size-kana"
| "math-auto";
| "full-size-kana";
}

export function typography(props: TypographyProps) {
Expand Down

0 comments on commit aac5091

Please sign in to comment.