We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8077c5b commit 97f32fbCopy full SHA for 97f32fb
1 file changed
apps/website/app/components/auth/ListGroups.tsx
@@ -45,7 +45,7 @@ export const ListGroups = () => {
45
.select("group_id,admin")
46
.eq("member_id", id);
47
if (membershipReq.error) {
48
- const userMessage = "Could not access DiscourseGraphs";
+ const userMessage = "Could not access Discourse Graphs";
49
setError(userMessage);
50
internalError({
51
error: membershipReq.error,
@@ -73,7 +73,7 @@ export const ListGroups = () => {
73
}, [internalError]);
74
75
return (
76
- <div>
+ <>
77
<div className="text-right text-sm">
78
{userName ? <p>Logged in as {userName}</p> : ""}
79
</div>
@@ -101,6 +101,6 @@ export const ListGroups = () => {
101
</>
102
)}
103
104
- </div>
+ </>
105
);
106
};
0 commit comments