mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
minor cleanup
This commit is contained in:
parent
3cf037775e
commit
445b364365
@ -310,7 +310,7 @@
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CURRENT_PROJECT_VERSION = 6;
|
||||
CURRENT_PROJECT_VERSION = 7;
|
||||
DEVELOPMENT_TEAM = 3P65PQ7SUR;
|
||||
ENABLE_BITCODE = NO;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
@ -348,7 +348,7 @@
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CURRENT_PROJECT_VERSION = 6;
|
||||
CURRENT_PROJECT_VERSION = 7;
|
||||
DEVELOPMENT_TEAM = 3P65PQ7SUR;
|
||||
INFOPLIST_FILE = Databag/Info.plist;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = Databag;
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { checkResponse, fetchWithTimeout } from './fetchUtil';
|
||||
|
||||
export async function setChannelCard(server, token, channelId, cardId ) {
|
||||
console.log("SETTING");
|
||||
let channel = await fetchWithTimeout(`https://${server}/content/channels/${channelId}/cards/${cardId}?agent=${token}`, {method: 'PUT'});
|
||||
checkResponse(channel);
|
||||
return await channel.json();
|
||||
|
@ -152,7 +152,6 @@ export const styles = StyleSheet.create({
|
||||
borderWidth: 1,
|
||||
borderColor: Colors.lightgrey,
|
||||
borderRadius: 4,
|
||||
padding: 8,
|
||||
marginBottom: 8,
|
||||
height: 250,
|
||||
},
|
||||
|
@ -10,8 +10,7 @@ export const styles = StyleSheet.create({
|
||||
alignItems: 'center',
|
||||
borderBottomWidth: 1,
|
||||
borderColor: Colors.itemDivider,
|
||||
paddingLeft: 16,
|
||||
paddingRight: 16,
|
||||
paddingLeft: 8,
|
||||
},
|
||||
detail: {
|
||||
paddingLeft: 12,
|
||||
|
@ -36,7 +36,6 @@ export function useMemberItem(item, members) {
|
||||
setMember: (member) => {
|
||||
updateState({ member });
|
||||
if (member) {
|
||||
console.log("SET CARD:", item.cardId);
|
||||
conversation.actions.setCard(item.cardId);
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user