Fix typo with identifier

This commit is contained in:
DaneEveritt 2022-06-18 12:16:54 -04:00
parent 0520014c0f
commit 4f3651b578
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ class ApiKeyController extends ClientApiController
->firstOrFail(); ->firstOrFail();
Activity::event('user:api-key.delete') Activity::event('user:api-key.delete')
->property('identifer', $key->identifier) ->property('identifier', $key->identifier)
->log(); ->log();
$key->delete(); $key->delete();

View file

@ -93,7 +93,7 @@ const EditScheduleModal = ({ schedule }: Props) => {
<Field <Field
name={'name'} name={'name'}
label={'Schedule name'} label={'Schedule name'}
description={'A human readable identifer for this schedule.'} description={'A human readable identifier for this schedule.'}
/> />
<div css={tw`grid grid-cols-2 sm:grid-cols-5 gap-4 mt-6`}> <div css={tw`grid grid-cols-2 sm:grid-cols-5 gap-4 mt-6`}>
<Field name={'minute'} label={'Minute'}/> <Field name={'minute'} label={'Minute'}/>