PluginProbe
Extendify / 3.2.1
Extendify v3.2.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/Agent/state/suggestions.js +3 -0 3.1.23.2.1 View file →
@@ -1,10 +1,13 @@
1 1 import { enhanceDomainSuggestion } from '@agent/lib/domain-suggestion';
2 +import { notificationSuggestion } from '@agent/lib/notification-suggestion';
2 3 import { create } from 'zustand';
3 4 import { devtools, persist } from 'zustand/middleware';
4 5
6 +const suggestion = notificationSuggestion();
5 7 const pluginSuggestions = (window.extAgentData?.suggestions || [])
6 8 .map(enhanceDomainSuggestion)
9 + .concat(suggestion ? [suggestion] : [])
7 10 .filter(Boolean)
8 11 .map((s) => ({
9 12 ...s,
10 13 source: s.source ?? 'plugin',