Skip to content

Commit

Permalink
Merge pull request #319 from EscolaLMS/bugfix/categories-dropdown
Browse files Browse the repository at this point in the history
import fixies
  • Loading branch information
victazzz committed Feb 20, 2024
2 parents 5395fd6 + fbac9c3 commit c49af74
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/atoms/Typography/Title.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ExtendableStyledComponent } from "types/component";
import { getFontFromTheme } from "../../../theme/provider";
import { HeaderLevelInt, HeaderLevelStr } from "../../../types/titleTypes";
import { setFontSizeByHeaderLevel } from "../../../utils/components/primitives/titleUtils";
import { getStylesBasedOnTheme } from "utils/utils";
import { getStylesBasedOnTheme } from "../../../utils/utils";

interface StyledHeader {
level?: HeaderLevelInt;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React, { FC, useRef, useState, useCallback, cloneElement } from "react";
import { CSSTransition } from "react-transition-group";
import styled, { withTheme } from "styled-components";
import { useOnClickOutside } from "../../../hooks/useOnClickOutside";
import { Checkbox } from "components/atoms/Option/Checkbox";
import Text from "components/atoms/Typography/Text";
import { Checkbox } from "../../../";
import { Text } from "../../../";
import { Category } from "@escolalms/sdk/lib/types/api";

interface Props {
Expand Down
2 changes: 1 addition & 1 deletion src/components/molecules/DropdownMenu/DropdownMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { CSSTransition } from "react-transition-group";
import styled, { withTheme } from "styled-components";
import { useOnClickOutside } from "../../../hooks/useOnClickOutside";

import Text from "components/atoms/Typography/Text";
import { Text } from "../../../";

export interface DropdownMenuItem {
id: number | string;
Expand Down
2 changes: 1 addition & 1 deletion src/components/molecules/NewCourseCard/NewCourseCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ProgressBarProps } from "../../atoms/ProgressBar/ProgressBar";
import { RatioBox } from "../../atoms/RatioBox/RatioBox";
import { getStylesBasedOnTheme } from "../../../utils/utils";
import { ExtendableStyledComponent } from "types/component";
import Text from "components/atoms/Typography/Text";
import { Text } from "../../../";

type ImageObject = {
path?: string;
Expand Down

0 comments on commit c49af74

Please sign in to comment.