Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions widgets-samples/cc/samples-cc-react-app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ function App() {
>
<IconProvider iconSet="momentum-icons">
<div className="webexTheme">
<h1>Contact Center Widgets in a React app</h1>
<h1>Contact Center Widgets in a React App</h1>
{showLoader && (
<div className="profile-loader-overlay">
<div className="profile-loader-spinner" aria-label="Loading" />
Expand All @@ -513,8 +513,8 @@ function App() {
<Icon name="check-circle-bold" />
</div>
<div className="toast-content">
<div className="toast-title">Interaction preferences changes</div>
<div>Your interaction preference is updated</div>
<div className="toast-title">Interaction Preferences Changes</div>
<div>Your Interaction Preference Is Updated</div>
</div>
<Button
size={32}
Expand Down Expand Up @@ -555,7 +555,7 @@ function App() {
<div className="accessTokenTheme" style={{marginTop: '15px'}}>
{loginType === 'token' && (
<div>
<span>Your access token: </span>
<span>Your Access Token: </span>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You Access Token is:

<input type="text" value={accessToken} onChange={(e) => setAccessToken(e.target.value)} />
</div>
)}
Expand Down
Loading