diff --git a/app/common/util.mjs b/app/common/util.mjs
index 330a397..1cb30f6 100644
--- a/app/common/util.mjs
+++ b/app/common/util.mjs
@@ -27,10 +27,6 @@ export function getDateParts(date = null) {
};
}
-export function br2nl(str, replace = '\n') {
- return str.replace(/
/gi, replace);
-}
-
export function getGearIcon(gear) {
switch (gear.gear.__typename) {
case 'HeadGear': return '🧢';
diff --git a/app/social/generators/ChallengeStatus.mjs b/app/social/generators/ChallengeStatus.mjs
index 9d4367e..12369e3 100644
--- a/app/social/generators/ChallengeStatus.mjs
+++ b/app/social/generators/ChallengeStatus.mjs
@@ -1,7 +1,7 @@
import StatusGenerator from "./StatusGenerator.mjs";
import Media from "../Media.mjs";
import { useEventSchedulesStore } from "../../../src/stores/schedules.mjs";
-import { br2nl } from "../../common/util.mjs";
+import { br2nl } from "../../../src/common/util.mjs";
import ScreenshotHelper from "../../screenshots/ScreenshotHelper.mjs";
export default class ChallengeStatus extends StatusGenerator
{
diff --git a/src/common/util.mjs b/src/common/util.mjs
new file mode 100644
index 0000000..df0a464
--- /dev/null
+++ b/src/common/util.mjs
@@ -0,0 +1,3 @@
+export function br2nl(str, replace = '\n') {
+ return str.replace(/
/gi, replace);
+}
diff --git a/src/components/challenge/ChallengeScheduleBox.vue b/src/components/challenge/ChallengeScheduleBox.vue
index c0a1139..2027d1e 100644
--- a/src/components/challenge/ChallengeScheduleBox.vue
+++ b/src/components/challenge/ChallengeScheduleBox.vue
@@ -7,10 +7,9 @@