Skip to content

Commit

Permalink
clear dummy data
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt committed Jul 23, 2024
1 parent fa23faf commit 51ec420
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/components/LayerController/AcquisitionController.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@ function AcquisitionController(props: {
acquisitionId: string | number | undefined;
acquisitions: Array<Ome.Acquisition>;
}) {
const {
acquisitionId,
acquisitions = [
{ id: "1", name: "testring a" },
{ id: 2, name: "testing 1,2,3" },
],
} = props;
const { acquisitionId, acquisitions } = props;
const id = acquisitionId ? String(acquisitionId) : undefined;
return (
<Select
Expand Down

0 comments on commit 51ec420

Please sign in to comment.