From 95eebb1acd6c70e9ea68d44c560b4bf89a493dd9 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Fri, 11 Nov 2022 01:17:25 -0600 Subject: [PATCH] fix: renamed report_id to thread_id in report a thread test (#48426) * fix: renamed report_id to thread_id * fix: reverted the renaming of report_id to thread_id in non-english files * fix: reverted renaming of report_id in ukranian curriculum --- .../information-security-projects/anonymous-message-board.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/09-information-security/information-security-projects/anonymous-message-board.md b/curriculum/challenges/english/09-information-security/information-security-projects/anonymous-message-board.md index 5045bf4efb0..7c9bdc01881 100644 --- a/curriculum/challenges/english/09-information-security/information-security-projects/anonymous-message-board.md +++ b/curriculum/challenges/english/09-information-security/information-security-projects/anonymous-message-board.md @@ -313,8 +313,8 @@ async (getUserInput) => { let res = await fetch(`${url}/api/threads/fcc_test`); const threads = await res.json(); - const report_id = threads[0]._id; - const data = { report_id }; + const thread_id = threads[0]._id; + const data = { thread_id }; res = await fetch(`${url}/api/threads/fcc_test`, { method: 'PUT',