Skip to content

Commit

Permalink
Merge pull request #608 from Original-Recipe/feat-unifiedParams
Browse files Browse the repository at this point in the history
fix: Types issue
  • Loading branch information
lihqi authored Nov 1, 2024
2 parents 7e50fdb + 3b2c42c commit 3e40e10
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface IProps {
onCancel: () => void;
config: IPointCloudConfig;
imgList: AnnotationFileList;
imgIndex?: number;
imgIndex: number;
}

const layout = {
Expand Down Expand Up @@ -279,7 +279,6 @@ const UnifyParamsModal = ({ id, visible, onCancel, config, imgList, imgIndex }:
const mapStateToProps = (state: AppState) => {
return {
imgIndex: state.annotation.imgIndex,
...state,
};
};

Expand Down

0 comments on commit 3e40e10

Please sign in to comment.