From 9271332d5b92e44f487c7c9d58cf4ea8b2532119 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Tue, 28 May 2024 19:11:19 +0200 Subject: [PATCH] chore: Fix typos (#292) --- public/script/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/script/app.js b/public/script/app.js index bdc5ccd..8c1e5be 100644 --- a/public/script/app.js +++ b/public/script/app.js @@ -1193,7 +1193,7 @@ angular const toast = { title: `Error when getting repository information`, date: new Date(), - body: `${o.owner}/${o.repo} produice the following error: ${translation}`, + body: `${o.owner}/${o.repo} produced the following error: ${translation}`, }; $scope.toasts.push(toast); $scope.error = translation; @@ -1203,7 +1203,7 @@ angular const toast = { title: `Error when getting repository information`, date: new Date(), - body: `${o.owner}/${o.repo} produice the following error: ${error.message}`, + body: `${o.owner}/${o.repo} produced the following error: ${error.message}`, }; $scope.toasts.push(toast); }