Skip to content

Commit

Permalink
credit report -> credit score
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Apr 13, 2023
1 parent e2966e8 commit ad35e97
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -11,19 +11,19 @@ export const InterfaceCreateCreditScore = (): JSX.Element => {
const minted: boolean | undefined = await handleCreateCreditScore?.();

if (!minted)
setError('There is not enough data for generating a credit report');
setError('There is not enough data for generating a credit score');
}, [handleCreateCreditScore]);

if (isLoading) return <MasaLoading />;

return (
<div className="interface-create-identity">
<div>
<h3>Your identity does not have a credit report</h3>
<h3>Your identity does not have a credit score</h3>
{error ? (
<p className="error-message">{error}</p>
) : (
<p>Generate your credit report!</p>
<p>Generate your credit score!</p>
)}
</div>
<div>
Expand Down

0 comments on commit ad35e97

Please sign in to comment.