10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
// Single source of truth for the app version displayed in Settings
|
|
// Update this when bumping app version
|
|
|
|
export const APP_VERSION = '1.2.6';
|
|
|
|
export function getDisplayedAppVersion(): string {
|
|
return APP_VERSION;
|
|
}
|
|
|
|
|