From 45ede860d910b9f01d9547af67fb87801f3432b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Thu, 9 Nov 2023 13:51:26 +0100 Subject: [PATCH] removes JSDoc types (already in typescript) --- frontend/src/App.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 9a04631..80f1a74 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -35,12 +35,6 @@ type ExceptionMessage = { * * If the property to be updated is an object or an array, it is updated * recursively. - * - * @param {Array} path - An array where each element is a key in the object, - * forming a path to the property to be updated. - * @param {object} obj - The object to be updated. - * @param {object} value - The new value for the property specified by the path. - * @return {object} - A new object with the specified property updated. */ function updateNestedObject(path: Array, obj: object, value: ValueType) { // Base case: If the path is empty, return the new value.