Rename component

[MAILPOET-2832]
This commit is contained in:
Pavel Dohnal
2020-04-28 13:35:39 +02:00
committed by Veljko V
parent d5dc7b31fb
commit e844a49e09
4 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ type Props = {
hasValidApiKey: boolean,
};
const SubscribersLimit = ({ subscribersInPlan, hasValidApiKey }: Props) => {
const SubscribersInPlan = ({ subscribersInPlan, hasValidApiKey }: Props) => {
if (!subscribersInPlan) return null;
if (!hasValidApiKey) return null;
return (
@@ -23,4 +23,4 @@ const SubscribersLimit = ({ subscribersInPlan, hasValidApiKey }: Props) => {
);
};
export default SubscribersLimit;
export default SubscribersInPlan;