diff --git a/src/components/TutorialMetadata.tsx b/src/components/TutorialMetadata.tsx index 78a486e11a8..d2565a5cb0d 100644 --- a/src/components/TutorialMetadata.tsx +++ b/src/components/TutorialMetadata.tsx @@ -27,7 +27,8 @@ export enum Skill { } export const getSkillTranslationId = (skill: Skill): TranslationKey => - `page-developers-tutorials:page-tutorial-${Skill[skill.toUpperCase() as keyof typeof Skill] + `page-developers-tutorials:page-tutorial-${ + Skill[skill.toUpperCase() as keyof typeof Skill] }` const TutorialMetadata = ({ @@ -82,16 +83,16 @@ const TutorialMetadata = ({ {address && ( - + {(isCopied) => ( -
-
- {" "} -
- {address} {isCopied && } +
+ + + {" "} + {address} {isCopied && }{" "} {isCopied && ( - + )}
)} @@ -102,4 +103,4 @@ const TutorialMetadata = ({ ) } -export default TutorialMetadata \ No newline at end of file +export default TutorialMetadata