Skip to content

Commit a141e48

Browse files
committed
AP-25527: Remove invalid boolean return statement
1 parent 5e461b9 commit a141e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

org.knime.ui.js/src/store/ai/aiSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export const useAISettingsStore = defineStore("aiSettings", () => {
146146
const dismissDisclaimer = async (disclaimerText: string) => {
147147
const userIdHash = getHashForCurrentHubUser();
148148
if (!userIdHash) {
149-
return false;
149+
return;
150150
}
151151

152152
if (!settings[userIdHash]) {

0 commit comments

Comments
 (0)