36 fix logbook edit view error #37

Merged
noahspannbauer merged 4 commits from 36-fix-logbook-edit-view-error into main 2025-02-02 20:51:42 -05:00
3 changed files with 1 additions and 3 deletions
Showing only changes of commit 4f7633be7f - Show all commits

View File

@@ -10,7 +10,6 @@ export class AzureAdStrategy extends PassportStrategy(
'azure-ad'
) {
constructor(@Inject(MODULE_OPTIONS_TOKEN) authModuleOptions: AuthModuleOptions) {
console.log(authModuleOptions)
super({
identityMetadata: `https://login.microsoftonline.com/${authModuleOptions.tenantId}/.well-known/openid-configuration`,
clientID: authModuleOptions.clientId,

View File

@@ -118,7 +118,7 @@ const LogForm: React.FC<ILogFormProps> = ({
? { headers: { Authorization: await getAccessToken() } }
: {};
const response: AxiosResponse = await httpClient.get(
`api/logs/${entryId}`,
`api/logs/log/${entryId}`,
config
);
const entry = response.data;

View File

@@ -67,7 +67,6 @@ const SiteNav: React.FC<unknown> = () => {
}
};
const getUserPhoto = async (accessToken: string): Promise<string> => {
console.log(accessToken)
try {
const response: AxiosResponse = await httpClient.get(`api/userPhoto`, {
headers: {