mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-17 04:32:15 +01:00
Enable npm workspaces and update dependencies
This commit is contained in:
@@ -46,8 +46,8 @@ async function importData() {
|
||||
addNotification('error', 'Please select the CSV or ZIP file that you want to import');
|
||||
return;
|
||||
}
|
||||
const rawBase64String = await toBase64(files.value[0]);
|
||||
const base64String = rawBase64String.split(';')[1].replace('base64,', '') as string;
|
||||
const rawBase64String = await toBase64(files.value[0]!);
|
||||
const base64String = rawBase64String.split(';')[1]!.replace('base64,', '') as string;
|
||||
const organizationId = getCurrentOrganizationId();
|
||||
if (organizationId !== null) {
|
||||
const { handleApiRequestNotifications } = useNotificationsStore();
|
||||
|
||||
Reference in New Issue
Block a user