Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Dec 13, 2024
1 parent 1deff13 commit 81d2993
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { type DownloadUrlGenerator, type DownloadOption } from './DownloadUrlGen
import { type SequenceFilter } from './SequenceFilters';

Check failure on line 5 in website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx

View workflow job for this annotation

GitHub Actions / Check format and types

`./SequenceFilters` import should occur before import of `~icons/iwwa/arrow-down`
import { type ReferenceGenomesSequenceNames } from '../../../types/referencesGenomes';

Check failure on line 6 in website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx

View workflow job for this annotation

GitHub Actions / Check format and types

`../../../types/referencesGenomes` import should occur before import of `~icons/iwwa/arrow-down`
import { processTemplate } from '../../../utils/templateProcessor';

Check failure on line 7 in website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx

View workflow job for this annotation

GitHub Actions / Check format and types

`../../../utils/templateProcessor` import should occur before import of `~icons/iwwa/arrow-down`
import type { DownloadDataType } from './DownloadDataType.ts';

Check failure on line 8 in website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx

View workflow job for this annotation

GitHub Actions / Check format and types

`./DownloadDataType.ts` type import should occur before import of `~icons/iwwa/arrow-down`

Check failure on line 8 in website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx

View workflow job for this annotation

GitHub Actions / Check format and types

'DownloadDataType' is defined but never used

type LinkOut = {
name: string;
Expand All @@ -30,7 +31,10 @@ export const LinkOutMenu: FC<LinkOutMenuProps> = ({
const downloadOption: DownloadOption = {
includeOldData: false,
includeRestricted: false,
dataType: 'aligned',
dataType : {
type: 'unalignedNucleotideSequences',
segment: 'main'
},
compression: undefined,
};

Expand Down

0 comments on commit 81d2993

Please sign in to comment.