Skip to content

Commit

Permalink
Merge branch 'hexlet-rus:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Ledchig authored Nov 21, 2023
2 parents e47d2fb + cd5dd62 commit a32daea
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@sentry/tracing": "^7.38.0",
"@sentry/types": "^7.47.0",
"@types/bcrypt": "^5.0.0",
"axios": "^1.3.3",
"axios": "^1.6.0",
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@reduxjs/toolkit": "^1.9.5",
"@sentry/react": "^7.47.0",
"@sentry/tracing": "^7.38.0",
"axios": "^1.4.0",
"axios": "^1.6.0",
"bootstrap": "^5.3.1",
"clipboard": "^2.0.11",
"formik": "^2.4.2",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/snippet/FileToolbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function SnippetName({ snippet }) {
ref={inputRef}
as={AutowidthInput}
autoComplete="off"
className="transition-padding"
className="transition-padding w-auto"
id="name"
isInvalid={!!formik.errors.name}
maxLength={30}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/slices/languagesSlice.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createSlice } from '@reduxjs/toolkit';
const slice = createSlice({
name: 'languages',
initialState: {
supportedLanguages: ['javascript', 'php', 'python', 'html'],
supportedLanguages: ['javascript', 'html'],
currentLanguage: 'javascript',
},
reducers: {
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4078,10 +4078,10 @@ axe-core@^4.6.2:
resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz"
integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==

axios@^1.3.3, axios@^1.4.0:
version "1.4.0"
resolved "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz"
integrity sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==
axios@^1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.0.tgz#f1e5292f26b2fd5c2e66876adc5b06cdbd7d2102"
integrity sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==
dependencies:
follow-redirects "^1.15.0"
form-data "^4.0.0"
Expand Down

0 comments on commit a32daea

Please sign in to comment.