export const filterDuplicates = (strings: string[]) => [...new Set(strings)];