We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e2fc1f commit 5245778Copy full SHA for 5245778
1 file changed
src/features/projects/ProjectCard.tsx
@@ -18,7 +18,7 @@ export default function ProjectCard({ project }: Props) {
18
19
const handleClick = (url: string, btnName: string) => {
20
window.open(url, 'blank')?.focus();
21
- sendClickEvent('Projects', `Clicked ${btnName}`);
+ sendClickEvent('Projects', `Clicked ${btnName} of project ${url}`);
22
};
23
24
const styles = {
0 commit comments