mirror of
https://github.com/Sqaaakoi/vc-newPluginsManager.git
synced 2024-11-16 22:54:37 -05:00
Fix new plugins not showing
This commit is contained in:
parent
317c386933
commit
d567b3cee9
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ function makeDependencyList(deps: string[]) {
|
||||||
export async function openNewPluginsModal() {
|
export async function openNewPluginsModal() {
|
||||||
const newPlugins = await getNewPlugins();
|
const newPlugins = await getNewPlugins();
|
||||||
const newSettings = await getNewSettings();
|
const newSettings = await getNewSettings();
|
||||||
if (newSettings.size && !hasSeen) {
|
if ((newPlugins.size || newSettings.size) && !hasSeen) {
|
||||||
hasSeen = true;
|
hasSeen = true;
|
||||||
openModal(modalProps => (
|
openModal(modalProps => (
|
||||||
<NewPluginsModal
|
<NewPluginsModal
|
||||||
|
|
Loading…
Reference in a new issue