mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-26 11:08:38 +03:00
7 lines
256 B
TypeScript
7 lines
256 B
TypeScript
|
import { persisted, type Persisted } from '@square/svelte-store';
|
||
|
|
||
|
export function projectHttpsWarningBannerDismissed(projectId: string): Persisted<boolean> {
|
||
|
const key = 'projectHttpsWarningBannerDismissed_';
|
||
|
return persisted(false, key + projectId);
|
||
|
}
|