Skip to content

Commit

Permalink
fix console warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtoombs committed Jun 20, 2024
1 parent b4dcc20 commit d2c3f05
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/subscriber/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ function App() {
</Show>
<ToastContainer />
<Tooltip
opacity={1}
style={{
backgroundColor: '#FFFFCC',
color: 'black',
opacity: '1',
boxShadow: '0 0 8px #464545',
zIndex: '999',
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ export const FolderSubMenu: React.FC<IFolderSubMenuProps> = ({ selectedContent }
className="folder-menu"
place="bottom"
openOnClick
style={{ opacity: '1', boxShadow: '0 0 8px #464545', zIndex: '999' }}
opacity={1}
style={{ boxShadow: '0 0 8px #464545', zIndex: '999' }}
id="folder"
>
<FolderMenu content={toFolderContent(selectedContent)} />
Expand Down
3 changes: 2 additions & 1 deletion app/subscriber/src/components/share-menu/ShareMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ export const ShareMenu: React.FC<IShareSubMenuProps> = ({ content }) => {
className="share-menu"
place="bottom"
openOnClick
style={{ opacity: '1', boxShadow: '0 0 8px #464545', zIndex: '999' }}
opacity={1}
style={{ boxShadow: '0 0 8px #464545', zIndex: '999' }}
id="share"
>
<FaEnvelope /> SHARE WITH A COLLEAGUE:
Expand Down
3 changes: 2 additions & 1 deletion app/subscriber/src/components/user-profile/UserProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ export const UserProfile: React.FC = () => {
closeOnEsc
isOpen={profileMenu}
setIsOpen={setProfileMenu}
style={{ opacity: '1', boxShadow: '0 0 8px #464545', zIndex: '999' }}
opacity={1}
style={{ boxShadow: '0 0 8px #464545', zIndex: '999' }}
id="my-info"
>
<h1>My Profile</h1>
Expand Down

0 comments on commit d2c3f05

Please sign in to comment.