Fix HolyNotes

This commit is contained in:
thororen1234 2025-06-18 11:53:57 -04:00
parent 04a6472e0a
commit 4cd4e44378
No known key found for this signature in database
4 changed files with 10 additions and 11 deletions

View file

@ -60,7 +60,7 @@ interface PluginModalProps extends ModalProps {
onRestartNeeded(): void;
}
function makeDummyUser(user: { username: string; id?: string; avatar?: string; }) {
export function makeDummyUser(user: { username: string; id?: string; avatar?: string; }) {
const newUser = new UserRecord({
username: user.username,
id: user.id ?? generateId(),