Skip to content

Commit

Permalink
updated import of lodesh-es
Browse files Browse the repository at this point in the history
  • Loading branch information
ARADDCC002 committed Jan 28, 2025
1 parent 5523052 commit 65b063f
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 10 deletions.
3 changes: 0 additions & 3 deletions frontend/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ const backend = process.env.BACKEND_SERVICE ?? defaultBackend

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
instrumentationHook: true,
},
reactStrictMode: true,
output: 'standalone',
transpilePackages: ['nanoid', 'lodash-es'],
Expand Down
2 changes: 1 addition & 1 deletion frontend/pages/data-card/[dataCardId]/schema.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useGetModel } from 'actions/model'
import _ from 'lodash-es'
import * as _ from 'lodash-es'
import { useRouter } from 'next/router'
import Loading from 'src/common/Loading'
import Title from 'src/common/Title'
Expand Down
2 changes: 1 addition & 1 deletion frontend/pages/model/[modelId]/access-request/schema.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
Typography,
} from '@mui/material'
import { useGetSchemas } from 'actions/schema'
import _ from 'lodash-es'
import * as _ from 'lodash-es'
import { useRouter } from 'next/router'
import { useCallback, useMemo, useState } from 'react'
import EmptyBlob from 'src/common/EmptyBlob'
Expand Down
2 changes: 1 addition & 1 deletion frontend/pages/model/[modelId]/schema.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useGetModel } from 'actions/model'
import _ from 'lodash-es'
import * as _ from 'lodash-es'
import { useRouter } from 'next/router'
import Loading from 'src/common/Loading'
import Title from 'src/common/Title'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/MuiForms/MetricItem.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import CloseIcon from '@mui/icons-material/Close'
import { IconButton, Stack, TextField, Tooltip } from '@mui/material'
import { useTheme } from '@mui/material/styles'
import _ from 'lodash-es'
import * as _ from 'lodash-es'
import { useCallback, useState } from 'react'
import { MetricValueWithId } from 'src/MuiForms/Metrics'
import { isValidNumber } from 'utils/stringUtils'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/MuiForms/Metrics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
} from '@mui/material'
import { useTheme } from '@mui/material/styles'
import { FormContextType } from '@rjsf/utils'
import _ from 'lodash-es'
import * as _ from 'lodash-es'
import { useCallback, useEffect, useMemo, useState } from 'react'
import MetricItem from 'src/MuiForms/MetricItem'
import { isValidNumber } from 'utils/stringUtils'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/entry/settings/EntityItem.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ClearIcon from '@mui/icons-material/Clear'
import { Autocomplete, Chip, IconButton, Stack, TableCell, TableRow, TextField, Tooltip } from '@mui/material'
import _ from 'lodash-es'
import * as _ from 'lodash-es'
import { SyntheticEvent, useMemo } from 'react'
import EntityIcon from 'src/entry/EntityIcon'
import EntityNameDisplay from 'src/entry/EntityNameDisplay'
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/reviews/ReactionButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { IconButton, Popover, Stack } from '@mui/material'
import { patchResponseReaction } from 'actions/response'
import { useGetCurrentUser } from 'actions/user'
import _ from 'lodash-es'
import * as _ from 'lodash-es'
import { ReactNode, useCallback, useEffect, useMemo, useState } from 'react'
import Loading from 'src/common/Loading'
import ReactionDisplay from 'src/reviews/ReactionDisplay'
Expand Down

0 comments on commit 65b063f

Please sign in to comment.