Skip to content

Commit 4f3651b

Browse files
committed
Fix typo with identifier
1 parent 0520014 commit 4f3651b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Http/Controllers/Api/Client/ApiKeyController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function delete(ClientApiRequest $request, string $identifier)
6767
->firstOrFail();
6868

6969
Activity::event('user:api-key.delete')
70-
->property('identifer', $key->identifier)
70+
->property('identifier', $key->identifier)
7171
->log();
7272

7373
$key->delete();

resources/scripts/components/server/schedules/EditScheduleModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const EditScheduleModal = ({ schedule }: Props) => {
9393
<Field
9494
name={'name'}
9595
label={'Schedule name'}
96-
description={'A human readable identifer for this schedule.'}
96+
description={'A human readable identifier for this schedule.'}
9797
/>
9898
<div css={tw`grid grid-cols-2 sm:grid-cols-5 gap-4 mt-6`}>
9999
<Field name={'minute'} label={'Minute'}/>

0 commit comments

Comments
 (0)