Skip to content

Commit 93f685d

Browse files
committed
Add stop generating button and fix camelCase
1 parent 48429b1 commit 93f685d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.idea/deploymentTargetDropDown.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/main/java/com/chatgptlite/wanted/constants/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ const val urlToGithub = "https://github.com/lambiengcode"
99

1010
const val matchResultString = "\"text\":"
1111
const val matchResultTurboString = "\"content\":"
12-
const val ConversationTestTag = "ConversationTestTag"
12+
const val conversationTestTag = "ConversationTestTag"

app/src/main/java/com/chatgptlite/wanted/ui/conversations/Conversation.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import androidx.compose.ui.platform.testTag
2121
import androidx.compose.ui.tooling.preview.Preview
2222
import androidx.compose.ui.unit.dp
2323
import androidx.hilt.navigation.compose.hiltViewModel
24-
import com.chatgptlite.wanted.constants.ConversationTestTag
24+
import com.chatgptlite.wanted.constants.conversationTestTag
2525
import com.chatgptlite.wanted.models.MessageModel
2626
import com.chatgptlite.wanted.ui.conversations.components.MessageCard
2727
import com.chatgptlite.wanted.ui.conversations.components.TextInput
@@ -68,7 +68,7 @@ fun MessageList(
6868
contentPadding =
6969
WindowInsets.statusBars.add(WindowInsets(top = 90.dp)).asPaddingValues(),
7070
modifier = Modifier
71-
.testTag(ConversationTestTag)
71+
.testTag(conversationTestTag)
7272
.fillMaxSize(),
7373
reverseLayout = true,
7474
state = listState,

0 commit comments

Comments
 (0)