Skip to content

Commit

Permalink
feat(csv-import): add linkedin url hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin Splitt committed Feb 17, 2024
1 parent 115f5b0 commit ab4560a
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { LinkedInImportContact } from '@/lib/types/import-contacts';
import { useState } from 'react';
import { useToast } from '@/components/ui/use-toast';
import { useRouter } from 'next/navigation';
import Link from 'next/link';

interface ImportContactsModalProps {
organization: string;
Expand Down Expand Up @@ -110,6 +111,16 @@ export const ImportContactsModal = ({
<DialogTitle>Upload Contacts</DialogTitle>
<DialogDescription>
Import your existing contacts by providing your LinkedIn CSV Export.
<br />
<strong>Hint:</strong> You can export your LinkedIn contacts{' '}
<Link
className="underline underline-offset-2"
href="https://www.linkedin.com/mypreferences/d/download-my-data"
target="_blank"
rel="noopener noreferrer"
>
here
</Link>
</DialogDescription>
</DialogHeader>
{importedContacts.length > 0 && (
Expand Down

0 comments on commit ab4560a

Please sign in to comment.