Skip to content

Commit

Permalink
fix(docker build): temporarily remove type imports from projects to l…
Browse files Browse the repository at this point in the history
…et build pass
  • Loading branch information
MatsJohansen87 committed Feb 5, 2024
1 parent a5add35 commit d3c5977
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/demo/src/AppCCP.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
dktkSpecimenMeasure,
dktkHistologyMeasure
} from "./measures";
import type { CatalogueText } from "@samply/lens";
let mockCatalogueData = "";
let libraryOptions = ""
Expand Down Expand Up @@ -37,7 +37,7 @@
const backendMeasures = `DKTK_STRAT_DEF_IN_INITIAL_POPULATION`;
const catalogueText: CatalogueText = {
const catalogueText = {
group: "Group",
collapseButtonTitle: "Collapse Tree",
expandButtonTitle: "Expand Tree",
Expand Down
4 changes: 2 additions & 2 deletions packages/demo/src/AppFragmentDevelopment.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import "@samply/lens";
import type { CatalogueText } from "@samply/lens";
import {
patientsMeasure,
Expand Down Expand Up @@ -53,7 +53,7 @@
DKTK_STRAT_DEF_IN_INITIAL_POPULATION
`;
const catalogueText: CatalogueText = {
const catalogueText = {
group: "Group",
collapseButtonTitle: "Collapse Tree",
expandButtonTitle: "Expand Tree",
Expand Down

0 comments on commit d3c5977

Please sign in to comment.