Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit cc7d452

Browse files
committed
remove unused prop
1 parent a9d6d5f commit cc7d452

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/routes/CreateNewTeam/pages/CreateTaasPayment/PaymentRule/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { clearSearchedRoles } from "../../../actions";
1212

1313
import "./styles.module.scss";
1414

15-
const PaymentRule = ({ calculatedAmount }) => {
15+
const PaymentRule = () => {
1616
const [processing, setProcessing] = useState(false);
1717
const [isChecked, setIsChecked] = useState(false);
1818
const [clicked, setClicked] = useState(true);

src/routes/CreateNewTeam/pages/CreateTaasPayment/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ const CreateTassPayment = () => {
172172
{calculatedAmount ? (
173173
<PaymentForm calculatedAmount={calculatedAmount} />
174174
) : (
175-
<PaymentRule calculatedAmount={calculatedAmount} />
175+
<PaymentRule />
176176
)}
177177
</ThemeProvider>
178178
</Elements>

0 commit comments

Comments
 (0)