Merge pull request #18870 from backstage/renovate/luxon-3.x-lockfile

fix(deps): update dependency luxon to v3.4.2
This commit is contained in:
Fredrik Adelöw
2023-09-04 11:54:23 +02:00
committed by GitHub
21 changed files with 87 additions and 50 deletions
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { renderInTestApp, TestApiProvider } from '@backstage/test-utils';
import { BuildList } from './BuildList';
@@ -39,8 +39,8 @@ export const BuildList = () => {
const tableRef = useRef<any>();
const initialFilters = {
from: DateTime.now().minus({ years: 1 }).toISODate(),
to: DateTime.now().toISODate(),
from: DateTime.now().minus({ years: 1 }).toISODate()!,
to: DateTime.now().toISODate()!,
};
const [filters, setFilters] = useState<BuildFilters>(initialFilters);