From 27b0f874cc8795fcfc7117e627b39bd38a00c73b Mon Sep 17 00:00:00 2001 From: Keith Grant Date: Mon, 1 Feb 2021 09:31:47 -0800 Subject: [PATCH] remove unused var --- awx/ui_next/src/components/DetailList/Detail.jsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/awx/ui_next/src/components/DetailList/Detail.jsx b/awx/ui_next/src/components/DetailList/Detail.jsx index dc434a1fe8..b58f09a8dc 100644 --- a/awx/ui_next/src/components/DetailList/Detail.jsx +++ b/awx/ui_next/src/components/DetailList/Detail.jsx @@ -34,7 +34,6 @@ const DetailValue = styled( `; const Detail = ({ - id, label, value, fullWidth, @@ -78,7 +77,6 @@ const Detail = ({ ); }; Detail.propTypes = { - id: string, label: node.isRequired, value: node, fullWidth: bool, @@ -86,7 +84,6 @@ Detail.propTypes = { helpText: string, }; Detail.defaultProps = { - id: null, value: null, fullWidth: false, alwaysVisible: false,