Skip to content

Commit

Permalink
fix: errors after conflict solving
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Sep 17, 2024
1 parent 09002de commit 15f2787
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/app/production/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,6 @@ export default function ProductionConfiguration({ params }: PageProps) {
});
}
}}
isLocked={locked}
/>
{removeSourceModal && selectedSourceRef && (
<RemoveSourceModal
Expand Down
1 change: 0 additions & 1 deletion src/components/sourceList/SourceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ const SourceList: React.FC<SourceListProps> = (props) => {
action,
actionText,
locked
actionText
} = props;

const [filteredSources, setFilteredSources] =
Expand Down
1 change: 0 additions & 1 deletion src/components/sourceListItem/SourceListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ type SourceListItemProps = {
action?: (source: SourceWithId) => void;
actionText?: string;
disabled: unknown;
action?: (source: SourceWithId) => void;
locked: boolean;
};

Expand Down

0 comments on commit 15f2787

Please sign in to comment.