Skip to content

Commit

Permalink
Update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
barbarah committed Dec 5, 2024
1 parent ae911ae commit ab5ffcf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ResearchGuide} from '@colonial-collections/api/src/research-guides/definitions';
import {ResearchGuide} from '@colonial-collections/api';
import {filterLevel3Guides, sortResearchGuide} from './filterGuides';

describe('filterLevel3Guides', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ResearchGuide} from '@colonial-collections/api/src/research-guides/definitions';
import {ResearchGuide} from '@colonial-collections/api';

/**
* Filters out level 1 and level 2 guides from the seeAlso arrays of level 2 guides.
Expand Down
1 change: 0 additions & 1 deletion apps/researcher/src/app/[locale]/research-guide/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export default async function Page() {
// There can be multiple top levels, but the current design only supports one.
const topLevel = topLevels[0];

console.log(topLevel);
const sortedGuides = sortResearchGuide(topLevel);
const filteredTopLevel = filterLevel3Guides(sortedGuides);

Expand Down

0 comments on commit ab5ffcf

Please sign in to comment.