summaryrefslogtreecommitdiff
path: root/remove-snippets-from-home.patch
blob: 4bd88ca3d63392838534b7c7258a42533ce12ebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/browser/components/newtab/lib/AboutPreferences.jsm
+++ b/browser/components/newtab/lib/AboutPreferences.jsm
@@ -54,18 +54,7 @@
   },
 ];
 
-const PREFS_AFTER_SECTIONS = () => [
-  {
-    id: "snippets",
-    pref: {
-      feed: "feeds.snippets",
-      titleString: "home-prefs-snippets-header",
-      descString: "home-prefs-snippets-description-new",
-    },
-    icon: "chrome://global/skin/icons/info.svg",
-    eventSource: "SNIPPETS",
-  },
-];
+const PREFS_AFTER_SECTIONS = () => [];
 
 this.AboutPreferences = class AboutPreferences {
   init() {
bgstack15