Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bchu1 committed Sep 24, 2024
1 parent 1703213 commit d61d47f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion frontend/packages/data-portal/app/apollo.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export const apolloClient = new ApolloClient({

export const apolloClientV2 = new ApolloClient({
ssrMode: true,
// TODO(bchu): Disable cache when V2 DB is able to handle e2e test load.
defaultOptions: {
query: {
fetchPolicy: 'no-cache',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import {
GetRunByIdQuery,
Tiltseries,
} from 'app/__generated__/graphql'
import { Tomogram } from 'app/__generated_v2__/graphql'
import { getDatasetById } from 'app/graphql/getDatasetById.server'
import { getRunById } from 'app/graphql/getRunById.server'
import { getRunByIdV2 } from 'app/graphql/getRunByIdV2.server'
import { isFiducial } from 'app/utils/tomograms'

import { DrawerTestData, DrawerTestMetadata } from './types'
import { getRunByIdV2 } from 'app/graphql/getRunByIdV2.server'
import { Tomogram } from 'app/__generated_v2__/graphql'

function getBoolString(value?: boolean): string {
return value ? 'True' : 'False'
Expand Down

0 comments on commit d61d47f

Please sign in to comment.