input.iconURL error TS

Node: 16.16.0
Discord.js: 14.4.0

The URL of the icon
Type 'string | null | undefined' is not assignable to type 'string | undefined'.
Type 'null' is not assignable to type 'string | undefined'

const embed = new EmbedBuilder()
        .setColor(Colors.DarkPurple)
        .setAuthor({ name: `${guild?.name} | Ticket System`, iconURL: guild?.iconURL({ size: 512 }) ?? undefined })
        .setDescription(Description);
Was this page helpful?