Skip to content

Commit

Permalink
refactor: style import (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejVukosav authored Jun 13, 2024
1 parent 586a202 commit a5678c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/calimero-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@calimero-is-near/calimero-p2p-sdk",
"version": "0.0.19",
"version": "0.0.20",
"description": "Javascript library to interact with Calimero P2P node",
"type": "module",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/calimero-sdk/src/components/loader/Spinner.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import styled, { keyframes } from 'styled-components';
import { styled, keyframes } from 'styled-components';

const SpinnerContainer = styled.div`
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion packages/calimero-sdk/src/setup/SetupModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useCallback, useState } from 'react';
import apiClient from '../api';
import React from 'react';
import Spinner from '../components/loader/Spinner';
import styled from 'styled-components';
import { styled } from 'styled-components';

export interface SetupModalProps {
successRoute: () => void;
Expand Down

0 comments on commit a5678c5

Please sign in to comment.