diff --git a/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/api-reference/options.md b/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/api-reference/options.md
index ba451fa64..72dec992a 100644
--- a/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/api-reference/options.md
+++ b/embedding-reports/display-reports-in-applications/web-application/native-blazor-report-viewer/api-reference/options.md
@@ -98,7 +98,7 @@ public ReportSourceOptions ReportSource { get; set; } = new ReportSourceOptions(
authenticating with the report server.
Password - (string, required) Defines the Password to be used for
authenticating with the report server.
- GetPersonalAccessToken (`Task`, *optional*, *RS.NET specific*) - specifies the callback function that should return the Token for authentication against the Telerik Report Server for .NET instance as a *string* wrapper in a [Task](https://learn.microsoft.com/en-us/dotnet/api/system.threading.tasks.task).
+ GetPersonalAccessToken (`Task`, *optional*, *RS.NET specific*) - specifies the callback function that should return the Token for authentication against the Telerik Report Server for .NET instance as a *string* wrapped in a [Task](https://learn.microsoft.com/en-us/dotnet/api/system.threading.tasks.task).
SendEmailDialogSettings - Represents the predefined settings for the Send Email
diff --git a/embedding-reports/display-reports-in-applications/web-application/react-report-viewer/how-to-use-with-report-server-net.md b/embedding-reports/display-reports-in-applications/web-application/react-report-viewer/how-to-use-with-report-server-net.md
index fd18a6f5a..21272875b 100644
--- a/embedding-reports/display-reports-in-applications/web-application/react-report-viewer/how-to-use-with-report-server-net.md
+++ b/embedding-reports/display-reports-in-applications/web-application/react-report-viewer/how-to-use-with-report-server-net.md
@@ -82,30 +82,30 @@ const reportServer = {
````JS
import { TelerikReportViewer } from '@progress/telerik-react-report-viewer';
-export function ReportViewer() {
-
- const reportServer = {
- url: 'http://reportServerUrl:port/',
- getPersonalAccessToken: () => fetch('/rs-token').then(response => response.text())
- }
-
- const reportSource = {
- report: 'Samples/Dashboard',
- parameters: {}
- }
-
- const viewerContainerStyle = {
- position: 'absolute',
- inset: '5px'
- }
+ export function ReportViewer() {
- return (
-
- )
-}
+ const reportServer = {
+ url: 'http://reportServerUrl:port/',
+ getPersonalAccessToken: () => fetch('/rs-token').then(response => response.text())
+ }
+
+ const reportSource = {
+ report: 'Samples/Dashboard',
+ parameters: {}
+ }
+
+ const viewerContainerStyle = {
+ position: 'absolute',
+ inset: '5px'
+ }
+
+ return (
+
+ )
+ }
````