fix: forgot that the version bump changed 😅

This commit is contained in:
Andras Bacsai 2022-07-06 13:46:00 +02:00
parent e740788d6c
commit 31d7e7e806
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ const customConfig: Config = {
length: 3
};
export const isDev = process.env.NODE_ENV === 'development';
export const version = '3.0.0';
export const version = '3.0.1';
export const defaultProxyImage = `coolify-haproxy-alpine:latest`;
export const defaultProxyImageTcp = `coolify-haproxy-tcp-alpine:latest`;

View File

@ -18,7 +18,7 @@ interface AppSession {
}
export const loginEmail: Writable<string | undefined> = writable()
export const appSession: Writable<AppSession> = writable({
version: '3.0.0',
version: '3.0.1',
userId: null,
teamId: null,
permission: 'read',