From e77eef15320628ab191eae30478b7ba18e42babf Mon Sep 17 00:00:00 2001 From: Bart Kerkvliet <974630+BKer@users.noreply.github.com> Date: Tue, 23 May 2023 22:38:01 +0200 Subject: [PATCH] Fix typo, rename cuttentTime to currentTime (#3053) --- .../hoppscotch-common/src/helpers/preRequestScriptSnippets.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/hoppscotch-common/src/helpers/preRequestScriptSnippets.ts b/packages/hoppscotch-common/src/helpers/preRequestScriptSnippets.ts index 708ac37e4..2e899a738 100644 --- a/packages/hoppscotch-common/src/helpers/preRequestScriptSnippets.ts +++ b/packages/hoppscotch-common/src/helpers/preRequestScriptSnippets.ts @@ -7,8 +7,8 @@ pw.env.set("variable", "value");`, { name: "Environment: Set timestamp variable", script: `\n\n// Set timestamp variable -const cuttentTime = Date.now(); -pw.env.set("timestamp", cuttentTime.toString());`, +const currentTime = Date.now(); +pw.env.set("timestamp", currentTime.toString());`, }, { name: "Environment: Set random number variable",