summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/models/member.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/member.ts b/src/models/member.ts
index 37c60bb1..ac28975f 100644
--- a/src/models/member.ts
+++ b/src/models/member.ts
@@ -137,7 +137,7 @@ export default class Member {
* Is the current member without a circle?
*/
get isOrphan() {
- return this._circle?.constructor?.name !== 'Circle'
+ return this._circle?.constructor?.name !== Circle.name
}
/**