adding in the actions in header
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import React from 'react';
|
||||
import Realm from 'realm';
|
||||
|
||||
interface IAuthContext {
|
||||
user?: Realm.User;
|
||||
}
|
||||
|
||||
const AuthContext = React.createContext<IAuthContext>({});
|
||||
|
||||
const AuthProvider = ({ children }: { children: React.ReactNode }) => {
|
||||
return <AuthContext.Provider value={{}}>{children}</AuthContext.Provider>;
|
||||
};
|
||||
@@ -32,7 +32,7 @@ export function ElectronProvider({ children }: { children: React.ReactNode }) {
|
||||
if (desktopMode === 'mainApp') {
|
||||
stayOnTop = false;
|
||||
finalDimensions = DEFAULT_APP_PRESET;
|
||||
finalPosition = 'center';
|
||||
// finalPosition = 'center';
|
||||
} else if (desktopMode === 'overlayOnly') {
|
||||
stayOnTop = true;
|
||||
finalDimensions = {
|
||||
|
||||
Reference in New Issue
Block a user