diff --git a/src/components/Learning/PageLearning.jsx b/src/components/Learning/PageLearning.jsx index b4a6fd2..f03ac46 100644 --- a/src/components/Learning/PageLearning.jsx +++ b/src/components/Learning/PageLearning.jsx @@ -19,8 +19,6 @@ export function LearningPage(){ // A method exposed to the backend used to set the interactive guides data coming from Dynamo const receiveInteractiveGuidesDataFromDotNet = (jsonData) => { - console.log('Received interactive guides data from .NET:', jsonData); - try { // jsonData is already an object, so no need to parse it const data = jsonData; diff --git a/src/components/Recent/PageRecent.jsx b/src/components/Recent/PageRecent.jsx index 4e5c6d0..2229dea 100644 --- a/src/components/Recent/PageRecent.jsx +++ b/src/components/Recent/PageRecent.jsx @@ -24,8 +24,6 @@ export function RecentPage ({ setIsDisabled }){ // A method exposed to the backend used to set the graph data coming from Dynamo const receiveGraphDataFromDotNet = (jsonData) => { - console.log('Received data from .NET:', jsonData); - try { // jsonData is already an object, so no need to parse it const data = jsonData; diff --git a/src/components/Samples/PageSamples.jsx b/src/components/Samples/PageSamples.jsx index 7d9b3af..1db5f78 100644 --- a/src/components/Samples/PageSamples.jsx +++ b/src/components/Samples/PageSamples.jsx @@ -24,8 +24,6 @@ export function SamplesPage (){ // A method exposed to the backend used to set the samples data coming from Dynamo const receiveSamplesDataFromDotNet = (jsonData) => { - console.log('Received data from .NET:', jsonData); - try { // jsonData is already an object, so no need to parse it const data = jsonData; diff --git a/src/index.css b/src/index.css index 3b02f21..e06d67b 100644 --- a/src/index.css +++ b/src/index.css @@ -11,7 +11,7 @@ @font-face { font-family: 'ArtifaktElement'; - src: url('http://localhost/embeddedFonts/ArtifaktElement-Regular.woff'); + src: url('#fontStyle'); } body { diff --git a/src/localization/localization.js b/src/localization/localization.js index 8da6d16..3ecf19f 100644 --- a/src/localization/localization.js +++ b/src/localization/localization.js @@ -4,6 +4,8 @@ export const getMessagesForLocale = (locale) => { switch(locale) { case 'en': return englishMessages; + case 'en-US': + return englishMessages; default: return englishMessages; }