diff --git a/desktop/desktop.scss b/desktop/desktop.scss
index e59bfbe..9bea6da 100644
--- a/desktop/desktop.scss
+++ b/desktop/desktop.scss
@@ -57,12 +57,6 @@
/* End attempt */
-// Increase width of lastest posts column
-.latest-topic-list-item .main-link {
- max-width: 100%;
- white-space: nowrap;
-}
-
// Adjust full screen chat appearance
.full-page-chat .chat-full-page-header {
diff --git a/desktop/header.html b/desktop/header.html
index 3d6ea71..e69de29 100644
--- a/desktop/header.html
+++ b/desktop/header.html
@@ -1,163 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/javascripts/initializers/acescentral-initializer.js b/javascripts/initializers/acescentral-initializer.js
new file mode 100644
index 0000000..c916e4d
--- /dev/null
+++ b/javascripts/initializers/acescentral-initializer.js
@@ -0,0 +1,12 @@
+import { withPluginApi } from "discourse/lib/plugin-api";
+
+function initializePlugin(api) {
+}
+
+export default {
+ name: "acescentral",
+
+ initialize() {
+ withPluginApi("1.24.0", initializePlugin);
+ },
+};