Skip to content

Commit

Permalink
rectified some importing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
noah-brunate committed Nov 18, 2024
1 parent a4286b4 commit 66733bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/components/src/InputField/InputField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as React from 'react'
import styled from 'styled-components'
import { InputError } from './InputError'
import { InputLabel } from './InputLabel'
import { Text } from '../../lib/Text'
import { Text } from 'src/Text'

const InputHeader = styled.div`
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/SideNavigation/LeftNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import * as React from 'react'
import styled from 'styled-components'
import { Text } from '../../lib/Text'
import { Text } from 'src/Text'

export interface ILeftNavigationProps {
applicationName: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
import * as React from 'react'
import styled from 'styled-components'
import { Text } from '../../lib/Text'
import { Text } from 'src/Text'

const SubSectionWrapper = styled.div`
border-top: solid 1px ${({ theme }) => theme.colors.grey200};
Expand Down

0 comments on commit 66733bf

Please sign in to comment.