Merge pull request #2274 from th3fallen/patch-1

Fix regex for parsing linkedin array links
This commit is contained in:
Amruth Pillai 2025-10-01 11:19:35 +02:00 committed by GitHub
commit 87a17a5196
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,4 +23,4 @@ export const parseCSV = async (string: string) => {
* @returns
*/
export const parseArrayLikeCSVEntry = (csvEntry: string) =>
csvEntry.replace(/^\[/, "").replace(/$]/, "").split(",");
csvEntry.replace(/^\[/, "").replace(/\]$/, "").split(",");