Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ljupcovangelski committed Sep 11, 2023
1 parent 4661506 commit fd2c428
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,6 @@ jobs:
echo ${{ secrets.PAT }} | docker login ghcr.io -u airydevci --password-stdin
./scripts/push-images.sh
- name: Install aws cli
uses: chrislennon/[email protected]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'

- name: Upload airy binary to S3
if: ${{ github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/release') || github.ref == 'refs/heads/main' }}
run: |
Expand Down
14 changes: 7 additions & 7 deletions frontend/control-center/src/pages/Streams/Creation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const Creation = (props: ListModeProps) => {
}
};

const selectedFieldFirstTopic = field => {
const selectedFieldFirstTopic = field => {
if (isSelected(field, true)) {
setSelectedFieldsFirstTopic(
selectedFieldsFirstTopic.filter(_field => {
Expand Down Expand Up @@ -203,7 +203,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none'
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -233,7 +233,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none'
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -283,7 +283,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none'
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -315,7 +315,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none'
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -398,7 +398,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none'
pointerEvents: 'none',
}}
/>
</div>
Expand Down Expand Up @@ -442,7 +442,7 @@ const Creation = (props: ListModeProps) => {
backgroundColor: 'transparent',
border: '1px solid gray',
borderRadius: '10px',
pointerEvents: 'none'
pointerEvents: 'none',
}}
/>
</div>
Expand Down

0 comments on commit fd2c428

Please sign in to comment.