File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
frontend/src/components/SessionDetail Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 33// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
44// Please see LICENSE files in the repository root for full details.
55
6+ import IconAdmin from "@vector-im/compound-design-tokens/assets/web/icons/admin" ;
67import IconChat from "@vector-im/compound-design-tokens/assets/web/icons/chat" ;
78import IconComputer from "@vector-im/compound-design-tokens/assets/web/icons/computer" ;
8- import IconErrorSolid from "@vector-im/compound-design-tokens/assets/web/icons/error-solid" ;
99import IconInfo from "@vector-im/compound-design-tokens/assets/web/icons/info" ;
10+ import IconRoom from "@vector-im/compound-design-tokens/assets/web/icons/room" ;
1011import IconSend from "@vector-im/compound-design-tokens/assets/web/icons/send" ;
1112import IconUserProfile from "@vector-im/compound-design-tokens/assets/web/icons/user-profile" ;
1213import {
@@ -68,7 +69,7 @@ export const ScopeSendMessages: React.FC = () => {
6869const ScopeSynapseAdmin : React . FC = ( ) => {
6970 const { t } = useTranslation ( ) ;
7071 return (
71- < VisualListItem Icon = { IconErrorSolid } destructive >
72+ < VisualListItem Icon = { IconRoom } destructive >
7273 { t ( "mas.scope.synapse_admin" ) }
7374 </ VisualListItem >
7475 ) ;
@@ -77,7 +78,7 @@ const ScopeSynapseAdmin: React.FC = () => {
7778const ScopeMasAdmin : React . FC = ( ) => {
7879 const { t } = useTranslation ( ) ;
7980 return (
80- < VisualListItem Icon = { IconErrorSolid } destructive >
81+ < VisualListItem Icon = { IconAdmin } destructive >
8182 { t ( "mas.scope.mas_admin" ) }
8283 </ VisualListItem >
8384 ) ;
You can’t perform that action at this time.
0 commit comments