Hey I'm a beginner in Google Apps Script. I got an error:
Exception: This script has too many triggers.
Even though I only have 1 trigger which is:
ScriptApp.newTrigger("Status()").timeBased().atDate(2021, 2, 1).create();
I'm actually thinking about using more time-driven triggers but i tried 1 and it has this error. Do you have any idea what is happening?
When the Web App is launched, new triggers are always created. Is there any way to keep the triggers without creating another one when the Web App is visited?