🐛 Fix logic in GH profile widget

This commit is contained in:
Alicie 2021-12-26 23:01:23 +00:00 committed by Alicia Sykes
parent 1296ca0bda
commit 5867601f1a
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export default {
},
username() {
const usersChoice = this.options.username;
if ((this.hideLanguagesCard || this.hideLanguagesCard) && !usersChoice) {
if ((!this.hideProfileCard || !this.hideLanguagesCard) && !usersChoice) {
this.error('You must specify a GitHub username');
}
return usersChoice;