Skip to content

Commit

Permalink
fix rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkey800 committed Nov 2, 2023
1 parent 4ef0df7 commit f9722dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useDatasetById } from 'app/hooks/useDatasetById'
import { i18n } from 'app/i18n'

export function RunCount() {
const dataset = useDatasetById()
const { dataset } = useDatasetById()

return (
<p className="text-sds-body-xs text-sds-gray-500 whitespace-nowrap">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const LOADING_RUNS = range(0, MAX_PER_PAGE).map(() => ({}) as Run)

export function RunsTable() {
const { isLoadingDebounced } = useIsLoading()
const dataset = useDatasetById()
const { dataset } = useDatasetById()
const runs = dataset.runs as unknown as Run[]

const columns = useMemo(() => {
Expand Down
2 changes: 1 addition & 1 deletion frontend/packages/data-portal/app/routes/datasets.$id.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export async function loader({ params, request }: LoaderFunctionArgs) {
}

export default function DatasetByIdPage() {
const dataset = useDatasetById()
const { dataset } = useDatasetById()

useCloseDatasetDrawerOnUnmount()

Expand Down

0 comments on commit f9722dd

Please sign in to comment.