From d0d8499137de172094336e7917ae8976b71ab0eb Mon Sep 17 00:00:00 2001 From: Sitaram Karki <101930921+SitaramKarki@users.noreply.github.com> Date: Thu, 10 Aug 2023 21:01:31 +0545 Subject: [PATCH] Update form-script.js Function 'intialSetup' has a typo. The correct function name should be initialSetup. --- form-script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/form-script.js b/form-script.js index 43604d6..57ec446 100644 --- a/form-script.js +++ b/form-script.js @@ -6,7 +6,7 @@ For a detailed explanation of this file, view 'form-script-commented.js' var sheetName = 'Sheet1' var scriptProp = PropertiesService.getScriptProperties() -function intialSetup () { +function initialSetup () { var activeSpreadsheet = SpreadsheetApp.getActiveSpreadsheet() scriptProp.setProperty('key', activeSpreadsheet.getId()) }