Skip to content

Commit

Permalink
Select folder renamed to select
Browse files Browse the repository at this point in the history
  • Loading branch information
PavelLaptev authored and gitbutler-client committed Jul 6, 2024
1 parent 1d29176 commit 36638e3
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions app/src/lib/branch/BranchLaneContextMenu.svelte
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<script lang="ts">
import Select from '$lib/Select/Select.svelte';
import SelectItem from '$lib/Select/SelectItem.svelte';
import { AIService } from '$lib/ai/service';
import { Project } from '$lib/backend/projects';
import ContextMenu from '$lib/components/contextmenu/ContextMenu.svelte';
import ContextMenuItem from '$lib/components/contextmenu/ContextMenuItem.svelte';
import ContextMenuSection from '$lib/components/contextmenu/ContextMenuSection.svelte';
import { projectAiGenEnabled } from '$lib/config/config';
import Select from '$lib/select/Select.svelte';

Check failure on line 8 in app/src/lib/branch/BranchLaneContextMenu.svelte

View workflow job for this annotation

GitHub Actions / lint-node

`$lib/select/Select.svelte` import should occur after import of `svelte`

Check failure on line 8 in app/src/lib/branch/BranchLaneContextMenu.svelte

View workflow job for this annotation

GitHub Actions / lint-node

Unable to resolve path to module '$lib/select/Select.svelte'
import SelectItem from '$lib/select/SelectItem.svelte';

Check failure on line 9 in app/src/lib/branch/BranchLaneContextMenu.svelte

View workflow job for this annotation

GitHub Actions / lint-node

`$lib/select/SelectItem.svelte` import should occur after import of `svelte`

Check failure on line 9 in app/src/lib/branch/BranchLaneContextMenu.svelte

View workflow job for this annotation

GitHub Actions / lint-node

Unable to resolve path to module '$lib/select/SelectItem.svelte'
import Button from '$lib/shared/Button.svelte';
import Modal from '$lib/shared/Modal.svelte';
import TextBox from '$lib/shared/TextBox.svelte';
Expand Down
4 changes: 2 additions & 2 deletions app/src/lib/components/AIPromptSelect.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script lang="ts">
import Select from '../Select/Select.svelte';
import SelectItem from '$lib/Select/SelectItem.svelte';
import Select from '../select/Select.svelte';

Check failure on line 2 in app/src/lib/components/AIPromptSelect.svelte

View workflow job for this annotation

GitHub Actions / lint-node

Unable to resolve path to module '../select/Select.svelte'
import { PromptService } from '$lib/ai/promptService';
import { Project } from '$lib/backend/projects';
import SelectItem from '$lib/select/SelectItem.svelte';

Check failure on line 5 in app/src/lib/components/AIPromptSelect.svelte

View workflow job for this annotation

GitHub Actions / lint-node

`$lib/select/SelectItem.svelte` import should occur after type import of `$lib/persisted/persisted`

Check failure on line 5 in app/src/lib/components/AIPromptSelect.svelte

View workflow job for this annotation

GitHub Actions / lint-node

Unable to resolve path to module '$lib/select/SelectItem.svelte'
import { getContext } from '$lib/utils/context';
import type { Prompts, UserPrompt } from '$lib/ai/types';
import type { Persisted } from '$lib/persisted/persisted';
Expand Down
4 changes: 2 additions & 2 deletions app/src/lib/components/BaseBranchSwitch.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script lang="ts">
import Select from '../Select/Select.svelte';
import Select from '../select/Select.svelte';

Check failure on line 2 in app/src/lib/components/BaseBranchSwitch.svelte

View workflow job for this annotation

GitHub Actions / lint-node

Unable to resolve path to module '../select/Select.svelte'
import InfoMessage from '../shared/InfoMessage.svelte';
import SelectItem from '$lib/Select/SelectItem.svelte';
import { Project } from '$lib/backend/projects';
import SectionCard from '$lib/components/SectionCard.svelte';
import SelectItem from '$lib/select/SelectItem.svelte';

Check failure on line 6 in app/src/lib/components/BaseBranchSwitch.svelte

View workflow job for this annotation

GitHub Actions / lint-node

`$lib/select/SelectItem.svelte` import should occur after import of `$lib/vbranches/virtualBranch`
import Section from '$lib/settings/Section.svelte';
import Button from '$lib/shared/Button.svelte';
import { getContext, getContextStore } from '$lib/utils/context';
Expand Down
4 changes: 2 additions & 2 deletions app/src/lib/components/ProjectSetupTarget.svelte
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<script async lang="ts">
import ProjectNameLabel from '../shared/ProjectNameLabel.svelte';
import Select from '$lib/Select/Select.svelte';
import SelectItem from '$lib/Select/SelectItem.svelte';
import { Project } from '$lib/backend/projects';
import BackButton from '$lib/components/BackButton.svelte';
import Login from '$lib/components/Login.svelte';
import SetupFeature from '$lib/components/SetupFeature.svelte';
import { projectAiGenEnabled } from '$lib/config/config';
import Select from '$lib/select/Select.svelte';
import SelectItem from '$lib/select/SelectItem.svelte';
import GithubIntegration from '$lib/settings/GithubIntegration.svelte';
import Button from '$lib/shared/Button.svelte';
import Toggle from '$lib/shared/Toggle.svelte';
Expand Down
6 changes: 3 additions & 3 deletions app/src/lib/components/ProjectSwitcher.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<script lang="ts">
import Select from '../Select/Select.svelte';
import SelectItem from '../Select/SelectItem.svelte';
import OptionsGroup from '$lib/Select/OptionsGroup.svelte';
import Select from '../select/Select.svelte';
import SelectItem from '../select/SelectItem.svelte';
import { ProjectService, Project } from '$lib/backend/projects';
import OptionsGroup from '$lib/select/OptionsGroup.svelte';
import Button from '$lib/shared/Button.svelte';
import { getContext, maybeGetContext } from '$lib/utils/context';
import { derived } from 'svelte/store';
Expand Down
4 changes: 2 additions & 2 deletions app/src/lib/settings/PreferencesForm.svelte
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<script lang="ts">
import Select from '$lib/Select/Select.svelte';
import SelectItem from '$lib/Select/SelectItem.svelte';
import { GitConfigService } from '$lib/backend/gitConfigService';
import { Project, ProjectService } from '$lib/backend/projects';
import SectionCard from '$lib/components/SectionCard.svelte';
import SectionCardDisclaimer from '$lib/components/SectionCardDisclaimer.svelte';
import { projectRunCommitHooks } from '$lib/config/config';
import Select from '$lib/select/Select.svelte';
import SelectItem from '$lib/select/SelectItem.svelte';
import Section from '$lib/settings/Section.svelte';
import Button from '$lib/shared/Button.svelte';
import InfoMessage from '$lib/shared/InfoMessage.svelte';
Expand Down
4 changes: 2 additions & 2 deletions app/src/routes/settings/ai/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<script lang="ts">
import Select from '$lib/Select/Select.svelte';
import SelectItem from '$lib/Select/SelectItem.svelte';
import { AISecretHandle, AIService, GitAIConfigKey, KeyOption } from '$lib/ai/service';
import { OpenAIModelName, AnthropicModelName, ModelKind } from '$lib/ai/types';
import { GitConfigService } from '$lib/backend/gitConfigService';
import AiPromptEdit from '$lib/components/AIPromptEdit/AIPromptEdit.svelte';
import SectionCard from '$lib/components/SectionCard.svelte';
import WelcomeSigninAction from '$lib/components/WelcomeSigninAction.svelte';
import { getSecretsService } from '$lib/secrets/secretsService';
import Select from '$lib/select/Select.svelte';
import SelectItem from '$lib/select/SelectItem.svelte';
import ContentWrapper from '$lib/settings/ContentWrapper.svelte';
import Section from '$lib/settings/Section.svelte';
import InfoMessage from '$lib/shared/InfoMessage.svelte';
Expand Down

0 comments on commit 36638e3

Please sign in to comment.